# New Ticket Created by Will Coleda # Please include the string: [perl #31992] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=31992 >
I noticed after a recent update that parts of the tcl test suite started failing. I finally tracked it down to the fact that I was NOT running with '-G'. Running parrot with -G gets me the expected output, leaving it off causes some repeatable failures. With a cvs fresh checkout (not update): % perl Configure.pl % make % (cd dynclasses && make) % cd languages/tcl && make % make test <SNIP> Failed Test Stat Wstat Total Fail Failed List of Failed ------------------------------------------------------------------------------- cmd_break.t 2 512 2 2 100.00% 1-2 cmd_continue.t 2 512 2 2 100.00% 1-2 cmd_expr.t 1 256 40 1 2.50% 36 cmd_for.t 1 256 1 1 100.00% 1 cmd_source.t ?? ?? % ?? cmd_time.t ?? ?? % ?? cmd_while.t 1 256 1 1 100.00% 1 Failed 7/28 test scripts, 75.00% okay. 7/154 subtests failed, 95.45% okay. % export TEST_PROG_ARGS=-G % make test <SNIP> Failed Test Stat Wstat Total Fail Failed List of Failed ------------------------------------------------------------------------------- cmd_expr.t 1 256 40 1 2.50% 36 cmd_source.t ?? ?? % ?? cmd_time.t ?? ?? % ?? Failed 3/28 test scripts, 89.29% okay. 1/154 subtests failed, 99.35% okay. Enjoy!