From 1472ee1c9d55e15e59ea6a9f2e2765cdc6e5a043 Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Tue, 21 Apr 2015 17:22:09 -0400 Subject: [PATCH] usual updates --- lib/_Inline/config-i686-linux-5.014001 | 21 +++++++++++++++++++++ lib/eval.pl | 8 +++++++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 lib/_Inline/config-i686-linux-5.014001 diff --git a/lib/_Inline/config-i686-linux-5.014001 b/lib/_Inline/config-i686-linux-5.014001 new file mode 100644 index 0000000..bdec857 --- /dev/null +++ b/lib/_Inline/config-i686-linux-5.014001 @@ -0,0 +1,21 @@ +version : 0.48 +languages : % + C : C + Foo : Foo + PYTHON : Python + Python : Python + foo : Foo + py : Python + python : Python +types : % + C : compiled + Foo : interpreted + Python : interpreted +modules : % + C : Inline::C + Foo : Inline::Foo + Python : Inline::Python +suffixes : % + C : so + Foo : foo + Python : pydat diff --git a/lib/eval.pl b/lib/eval.pl index af62db0..9787fe7 100755 --- a/lib/eval.pl +++ b/lib/eval.pl @@ -24,15 +24,21 @@ use DateTimeX::Easy; use Date::Parse; use Time::Piece; use Time::HiRes; +use URI; require Function::Parameters; require experimental; +require "if.pm"; require Moose; require MooseX::Declare; eval "use MooseX::Declare; class Foo { has dongs => ( is => ro, isa => 'Int' ); };"; require "utf8_heavy.pl"; +{ +my $len = eval "lc 'ẞ'"; +warn $@ if $@; +} # save the old stdout, we're going to clobber it soon. STDOUT my $oldout; @@ -169,7 +175,7 @@ use Storable qw/nfreeze/; nfreeze([]); #Preload Nfreeze since it's loaded on dem my $kilo = 1024; my $meg = $kilo * $kilo; - my $limit = 150 * $meg; + my $limit = 512 * $meg; # clobber stdout before we set rlimits. otherwise we can't do anything STDOUT