[svn:parrot] r37842 - in trunk: runtime/parrot/library/Test t/library t/oo t/op t/pmc

barney at svn.parrot.org barney at svn.parrot.org
Wed Apr 1 17:56:50 UTC 2009


Author: barney
Date: Wed Apr  1 17:56:47 2009
New Revision: 37842
URL: https://trac.parrot.org/parrot/changeset/37842

Log:
Do not specify 'include' when including test_more.pir.

Modified:
   trunk/runtime/parrot/library/Test/Class.pir
   trunk/t/library/cgi_query_hash.t
   trunk/t/library/iter.t
   trunk/t/library/range.t
   trunk/t/oo/attributes.t
   trunk/t/oo/inheritance.t
   trunk/t/oo/isa.t
   trunk/t/oo/names.t
   trunk/t/oo/proxy.t
   trunk/t/op/annotate.t
   trunk/t/op/box.t
   trunk/t/op/cmp-nonbranch.t
   trunk/t/op/copy.t
   trunk/t/pmc/addrregistry.t
   trunk/t/pmc/boolean.t
   trunk/t/pmc/codestring.t
   trunk/t/pmc/continuation.t
   trunk/t/pmc/exceptionhandler.t
   trunk/t/pmc/key.t
   trunk/t/pmc/lexinfo.t
   trunk/t/pmc/lexpad.t
   trunk/t/pmc/managedstruct.t
   trunk/t/pmc/multisub.t
   trunk/t/pmc/parrotrunningthread.t
   trunk/t/pmc/pmcproxy.t

Modified: trunk/runtime/parrot/library/Test/Class.pir
==============================================================================
--- trunk/runtime/parrot/library/Test/Class.pir	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/runtime/parrot/library/Test/Class.pir	Wed Apr  1 17:56:47 2009	(r37842)
@@ -9,7 +9,7 @@
         load_bytecode 'Test/Class.pbc'
 
         # load other testing libraries
-        .include 'include/test_more.pir'
+        .include 'test_more.pir'
 
         .local pmc class
         class = subclass [ 'Test'; 'Class' ], 'MyClass'

Modified: trunk/t/library/cgi_query_hash.t
==============================================================================
--- trunk/t/library/cgi_query_hash.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/library/cgi_query_hash.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 
 .sub test :main
     load_bytecode "dumper.pbc"
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     load_bytecode 'CGI/QueryHash.pbc'
 

Modified: trunk/t/library/iter.t
==============================================================================
--- trunk/t/library/iter.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/library/iter.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -14,7 +14,7 @@
     set_global 'TEST_VERBOSE', $P0
 
   import:
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     'plan'( TESTS )
 

Modified: trunk/t/library/range.t
==============================================================================
--- trunk/t/library/range.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/library/range.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     load_bytecode 'Range.pir'
 
     plan(78)

Modified: trunk/t/oo/attributes.t
==============================================================================
--- trunk/t/oo/attributes.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/oo/attributes.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(3)
 

Modified: trunk/t/oo/inheritance.t
==============================================================================
--- trunk/t/oo/inheritance.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/oo/inheritance.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(4)
 

Modified: trunk/t/oo/isa.t
==============================================================================
--- trunk/t/oo/isa.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/oo/isa.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -18,7 +18,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(29)
 

Modified: trunk/t/oo/names.t
==============================================================================
--- trunk/t/oo/names.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/oo/names.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -21,7 +21,7 @@
 .namespace []
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(2)
 

Modified: trunk/t/oo/proxy.t
==============================================================================
--- trunk/t/oo/proxy.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/oo/proxy.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(9)
 

Modified: trunk/t/op/annotate.t
==============================================================================
--- trunk/t/op/annotate.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/op/annotate.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(33)
 

Modified: trunk/t/op/box.t
==============================================================================
--- trunk/t/op/box.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/op/box.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -26,7 +26,7 @@
 .end
 
 .sub 'main' :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     'plan'(TESTS)
 
@@ -49,6 +49,7 @@
 .end
 
 .sub 'box_int'
+
     $P0 = box 100
     $I0 = $P0
     is( $I0, 100, 'value preserved when boxing int' )
@@ -114,7 +115,8 @@
 .end
 
 .sub 'box_int'
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
+
     $P0 = box -100
     $I0 = $P0
     is( $I0, -100, 'value preserved when boxing int in HLL' )

Modified: trunk/t/op/cmp-nonbranch.t
==============================================================================
--- trunk/t/op/cmp-nonbranch.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/op/cmp-nonbranch.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -45,7 +45,7 @@
 
 
 .sub 'main' :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     'plan'(TESTS)
 

Modified: trunk/t/op/copy.t
==============================================================================
--- trunk/t/op/copy.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/op/copy.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub 'main' :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(3)
 

Modified: trunk/t/pmc/addrregistry.t
==============================================================================
--- trunk/t/pmc/addrregistry.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/addrregistry.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(1)
 

Modified: trunk/t/pmc/boolean.t
==============================================================================
--- trunk/t/pmc/boolean.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/boolean.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -18,7 +18,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(28)
     init_int_tests()
     num_tests()

Modified: trunk/t/pmc/codestring.t
==============================================================================
--- trunk/t/pmc/codestring.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/codestring.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -18,7 +18,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(20)
 
     create_codestring()

Modified: trunk/t/pmc/continuation.t
==============================================================================
--- trunk/t/pmc/continuation.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/continuation.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(2)
 
     test_new()

Modified: trunk/t/pmc/exceptionhandler.t
==============================================================================
--- trunk/t/pmc/exceptionhandler.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/exceptionhandler.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -20,7 +20,7 @@
 .include 'include/except_types.pasm'
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(8)
 

Modified: trunk/t/pmc/key.t
==============================================================================
--- trunk/t/pmc/key.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/key.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(10)
 

Modified: trunk/t/pmc/lexinfo.t
==============================================================================
--- trunk/t/pmc/lexinfo.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/lexinfo.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -18,7 +18,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(4)
 
     new_test()

Modified: trunk/t/pmc/lexpad.t
==============================================================================
--- trunk/t/pmc/lexpad.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/lexpad.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -18,7 +18,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(1)
 
     new_test()

Modified: trunk/t/pmc/managedstruct.t
==============================================================================
--- trunk/t/pmc/managedstruct.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/managedstruct.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(24)
 
     set_managedstruct_size()

Modified: trunk/t/pmc/multisub.t
==============================================================================
--- trunk/t/pmc/multisub.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/multisub.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -18,7 +18,7 @@
 
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan( 8 )
 

Modified: trunk/t/pmc/parrotrunningthread.t
==============================================================================
--- trunk/t/pmc/parrotrunningthread.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/parrotrunningthread.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub 'main' :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
 
     plan(2)
 

Modified: trunk/t/pmc/pmcproxy.t
==============================================================================
--- trunk/t/pmc/pmcproxy.t	Wed Apr  1 17:32:09 2009	(r37841)
+++ trunk/t/pmc/pmcproxy.t	Wed Apr  1 17:56:47 2009	(r37842)
@@ -17,7 +17,7 @@
 =cut
 
 .sub main :main
-    .include 'include/test_more.pir'
+    .include 'test_more.pir'
     plan(45)
 
     new_tests()


More information about the parrot-commits mailing list