Author: pmichaud
Date: Fri Nov  7 08:46:02 2008
New Revision: 32428

Modified:
   trunk/languages/perl6/tools/test_summary.pl

Log:
[rakudo]:  Remove -G flag from test_summary.pl,
as it results in "out of memory" errors on my machine
for the S05-mass/rx.t tests.


Modified: trunk/languages/perl6/tools/test_summary.pl
==============================================================================
--- trunk/languages/perl6/tools/test_summary.pl (original)
+++ trunk/languages/perl6/tools/test_summary.pl Fri Nov  7 08:46:02 2008
@@ -58,7 +58,7 @@
     close($th);
     my $tname = $tfile; $tname =~ s!^t/spec/!!;
     printf "%s%s..%4d", $tname, '.' x ($max - length($tname)), $plan;
-    my $cmd = "../../parrot -G perl6.pbc $tfile";
+    my $cmd = "../../parrot perl6.pbc $tfile";
     my @results = split "\n", `$cmd`;
     my ($test, $pass, $fail, $todo, $skip) = (0,0,0,0,0);
     my (%skip, %todopass, %todofail);

Reply via email to