Author: chromatic
Date: Tue Apr  1 22:50:18 2008
New Revision: 26700

Modified:
   trunk/compilers/imcc/pbc.c
   trunk/t/compilers/imcc/syn/regressions.t

Log:
[t] Untodo the test for RT #41097, which is passing as of r26699.

Modified: trunk/compilers/imcc/pbc.c
==============================================================================
--- trunk/compilers/imcc/pbc.c  (original)
+++ trunk/compilers/imcc/pbc.c  Tue Apr  1 22:50:18 2008
@@ -1615,8 +1615,8 @@
     n = VTABLE_elements(interp, sig_arr);
 
     if (n != ins->symreg_count - 1)
-        IMCC_fatal(interp, 1, "IMCC error: parameter count mismatch in '%s' -- 
"
-                              "have %d, want %d",
+        IMCC_fatal(interp, 1, "syntax error: parameter count mismatch in '%s'"
+                              " -- have %d, want %d",
                               ins->opname, ins->symreg_count - 1, n );
 
     for (i = 0; i < n; ++i) {

Modified: trunk/t/compilers/imcc/syn/regressions.t
==============================================================================
--- trunk/t/compilers/imcc/syn/regressions.t    (original)
+++ trunk/t/compilers/imcc/syn/regressions.t    Tue Apr  1 22:50:18 2008
@@ -8,7 +8,7 @@
 use Test::More;
 use Parrot::Test tests => 2;
 
-pir_error_output_like( <<'CODE', <<'OUT', 'invalid get_results syntax', todo 
=> "RT# 41097");
+pir_error_output_like( <<'CODE', <<'OUT', 'invalid get_results syntax');
 .sub main :main
     get_results '(0)'
 .end

Reply via email to