cvsuser 03/11/26 04:38:24
Modified: imcc/t/imcpasm optc.t pcc.t
Log:
skip sub related imcpasm tests
Revision Changes Path
1.9 +5 -0 parrot/imcc/t/imcpasm/optc.t
Index: optc.t
===================================================================
RCS file: /cvs/public/parrot/imcc/t/imcpasm/optc.t,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -r1.8 -r1.9
--- optc.t 24 Nov 2003 06:05:08 -0000 1.8
+++ optc.t 26 Nov 2003 12:38:23 -0000 1.9
@@ -5,6 +5,9 @@
# these tests are run with -Oc by TestCompiler and show
# generated PASM code for call optimization
+SKIP: {
+ skip("PCC changes", 6);
+
##############################
# prototyped calls, invokecc
output_like(<<'CODE', <<'OUT', "in P param");
@@ -322,3 +325,5 @@
invoke P1
/
OUT
+
+}
1.19 +4 -0 parrot/imcc/t/imcpasm/pcc.t
Index: pcc.t
===================================================================
RCS file: /cvs/public/parrot/imcc/t/imcpasm/pcc.t,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -w -r1.18 -r1.19
--- pcc.t 24 Nov 2003 06:05:08 -0000 1.18
+++ pcc.t 26 Nov 2003 12:38:24 -0000 1.19
@@ -5,6 +5,9 @@
##############################
# parrot calling conventions
#
+SKIP: {
+ skip("PCC changes", 10);
+
output_like(<<'CODE', <<'OUT', "proto call, proto sub, invokecc");
.sub _main
.local Sub sub
@@ -434,3 +437,4 @@
/
OUT
+}