# New Ticket Created by  Leopold Toetsch 
# Please include the string:  [perl #17615]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=17615 >


Attached patch fixed the "make --test" problem, reported by Tanton et al.
Actually it was my fault, I forgot about the changed semantics of 
running imcc and the usage in TestCompiler.pm

Thanks to Tanton to tracking this down to that  point, that made my 
brain work again.

Please apply,
leo


-- attachment  1 ------------------------------------------------------
url: http://rt.perl.org/rt2/attach/38723/31452/e35eb2/perltest.patch

--- parrot/languages/perl6/P6C/TestCompiler.pm  Fri Sep  6 10:08:00 2002
+++ parrot-leo/languages/perl6/P6C/TestCompiler.pm      Fri Sep 27 08:16:20 2002
@@ -47,7 +47,7 @@
     my $pasm_f = Parrot::Test::per_test('.pasm',$count);
 
     Parrot::Test::_run_command("$PConfig{perl} prd-perl6.pl --batch=$p6_f --imc", 
'STDOUT' => $imc_f, 'STDERR' => $err_f);
-    Parrot::Test::_run_command("../imcc/imcc $imc_f $pasm_f", 'STDERR' => $err_f);
+    Parrot::Test::_run_command("../imcc/imcc -o $pasm_f $imc_f", 'STDERR' => $err_f);
     my $pasm;
     {
       open PASM, $pasm_f;

Reply via email to