Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't bother dumping core.
timotimo++
  • Loading branch information
coke committed Jan 3, 2014
1 parent 65b58f0 commit c667117
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/niecza.sh
Expand Up @@ -12,7 +12,7 @@ git clone git://github.com/sorear/niecza.git
cd niecza
ln -s ../../roast t/spec
echo "#!/usr/bin/env perl" > perl6
echo 'exec "ulimit -t 90; ulimit -v 1260720; nice -20 mono ./run/Niecza.exe @ARGV"' >> perl6
echo 'exec "ulimit -t 90; ulimit -v 1260720; ulimit -c 0; nice -20 mono ./run/Niecza.exe @ARGV"' >> perl6
chmod a+x ./perl6
make all

Expand Down
2 changes: 1 addition & 1 deletion bin/pugs.sh
Expand Up @@ -19,6 +19,6 @@ ln -s ../../roast t/spec
echo "#!/usr/bin/env perl" > perl6
echo '$ENV{PUGS_USE_EXTERNAL_TEST}=1;' >> perl6
echo '$ENV{LC_ALL}="en_US.ISO-8859-1";' >> perl6
echo 'exec "ulimit -t 90; ulimit -v 1260720; nice -20 ./Pugs/pugs -IPugs/ext/Test/lib @ARGV"' >> perl6
echo 'exec "ulimit -t 90; ulimit -v 1260720; ulimit -c 0; nice -20 ./Pugs/pugs -IPugs/ext/Test/lib @ARGV"' >> perl6
chmod a+x ./perl6
perl t/spec/test_summary pugs 2>&1 | tee ../pugs_summary.out
2 changes: 1 addition & 1 deletion bin/rakudo.moar.sh
Expand Up @@ -13,7 +13,7 @@ make all

# default build generates a "perl6-m" - need "./perl6" for test_summary
echo "#!/usr/bin/env perl" > perl6
echo 'exec "ulimit -t 90; ulimit -v 1260720; nice -20 ./perl6-m @ARGV"' >> perl6
echo 'exec "ulimit -t 90; ulimit -v 1260720; ulimit -c 0; nice -20 ./perl6-m @ARGV"' >> perl6
chmod a+x ./perl6

# uninstalled rakudo doesn't know how to find Test.pm
Expand Down

0 comments on commit c667117

Please sign in to comment.