> Hhm - could you track this further down? > > For failing e.g. 1_1.p6: > > $ ./perl6 -vwk t/compiler/1_1.p6 > > $ ../imcc/imcc -d -d -d t/compiler/1_1.imc >1_1.debug 2>&1 > $ less 1_1.debug
Those both work fine. However, if I do perl prd-perl6.pl --batch="t/compiler/1_1.p6" --imc > imc 2>err (which is in P6C/TestCompiler.pm used by t/builtin/array.t) I get a pasm file in imc and 1 error in err: [IMCC::add_function (diagnostic) main] Redefining function main I then do .../imcc/imcc imc pasm (which is the next step listed in P6C/TestCompiler.pm) and the resultant pasm file is blank. I'm not sure if this is the problem or not...just trying to track it down. Tanton