[svn:parrot] r38704 - in trunk/t: compilers/pge/p5regex dynpmc pmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Mon May 11 22:03:32 UTC 2009


Author: NotFound
Date: Mon May 11 22:03:32 2009
New Revision: 38704
URL: https://trac.parrot.org/parrot/changeset/38704

Log:
[cage] some more s/pir/pbc

Modified:
   trunk/t/compilers/pge/p5regex/p5rx.t
   trunk/t/dynpmc/pair.t
   trunk/t/pmc/class.t
   trunk/t/pmc/exporter.t

Modified: trunk/t/compilers/pge/p5regex/p5rx.t
==============================================================================
--- trunk/t/compilers/pge/p5regex/p5rx.t	Mon May 11 21:55:44 2009	(r38703)
+++ trunk/t/compilers/pge/p5regex/p5rx.t	Mon May 11 22:03:32 2009	(r38704)
@@ -56,7 +56,7 @@
 .const int TESTS = 960
 
 .sub main :main
-    load_bytecode 'Test/Builder.pir'
+    load_bytecode 'Test/Builder.pbc'
     load_bytecode 'PGE.pbc'
     load_bytecode 'PGE/Dumper.pbc'
     .include 'iglobals.pasm'

Modified: trunk/t/dynpmc/pair.t
==============================================================================
--- trunk/t/dynpmc/pair.t	Mon May 11 21:55:44 2009	(r38703)
+++ trunk/t/dynpmc/pair.t	Mon May 11 22:03:32 2009	(r38704)
@@ -6,7 +6,7 @@
 
 .sub main :main
     loadlib $P1, 'pair'
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
 
     .local pmc plan, is, ok
     plan = get_hll_global [ 'Test'; 'More' ], 'plan'

Modified: trunk/t/pmc/class.t
==============================================================================
--- trunk/t/pmc/class.t	Mon May 11 21:55:44 2009	(r38703)
+++ trunk/t/pmc/class.t	Mon May 11 22:03:32 2009	(r38704)
@@ -21,7 +21,7 @@
 
 
 .sub 'main' :main
-     load_bytecode 'Test/More.pir'
+     load_bytecode 'Test/More.pbc'
      .local pmc exporter, test_ns
      test_ns = get_namespace [ 'Test'; 'More' ]
      exporter = new ['Exporter']

Modified: trunk/t/pmc/exporter.t
==============================================================================
--- trunk/t/pmc/exporter.t	Mon May 11 21:55:44 2009	(r38703)
+++ trunk/t/pmc/exporter.t	Mon May 11 22:03:32 2009	(r38704)
@@ -283,7 +283,7 @@
 
 pir_output_is( <<'CODE', <<'OUT', 'import - globals as string' );
 .sub 'test' :main
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
     .local pmc exporter, src
 
     src      = get_namespace [ 'Test'; 'More' ]
@@ -300,7 +300,7 @@
 
 pir_output_is( <<'CODE', <<'OUT', 'import - globals with source passed separately' );
 .sub 'test' :main
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
     .local pmc exporter, src
 
     src      = get_namespace [ 'Test'; 'More' ]
@@ -318,7 +318,7 @@
 
 pir_output_is( <<'CODE', <<'OUT', 'import - globals as array' );
 .sub 'test' :main
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
     .local pmc exporter, src, globals
 
     src     = get_namespace [ 'Test'; 'More' ]
@@ -338,7 +338,7 @@
 
 pir_output_is( <<'CODE', <<'OUT', 'import - globals as hash - null + empty string' );
 .sub 'test' :main
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
     .local pmc exporter, src, globals, nul
 
     nul     = new ['Null']
@@ -359,7 +359,7 @@
 
 pir_output_is( <<'CODE', <<'OUT', 'import - globals as hash - with dest names (latin)' );
 .sub 'test' :main
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
     .local pmc exporter, src, globals
 
     src     = get_namespace [ 'Test'; 'More' ]
@@ -379,7 +379,7 @@
 
 pir_output_is( <<'CODE', <<'OUT', 'import - globals with destination' );
 .sub 'test' :main
-    load_bytecode 'Test/More.pir'
+    load_bytecode 'Test/More.pbc'
     .local pmc exporter, src, dest, globals
 
     src     = get_namespace [ 'Test'; 'More' ]


More information about the parrot-commits mailing list