Author: coke
Date: Sat Dec  1 20:01:10 2007
New Revision: 23332

Modified:
   trunk/runtime/parrot/include/test_more.pir
   trunk/runtime/parrot/library/Test/Builder.pir
   trunk/runtime/parrot/library/Test/Builder/Tester.pir
   trunk/runtime/parrot/library/Test/More.pir

Log:
[library] - prefer pbc over pir with load_bytecode

Modified: trunk/runtime/parrot/include/test_more.pir
==============================================================================
--- trunk/runtime/parrot/include/test_more.pir  (original)
+++ trunk/runtime/parrot/include/test_more.pir  Sat Dec  1 20:01:10 2007
@@ -11,7 +11,7 @@
 
 =cut
 
-    load_bytecode 'library/Test/More.pir'
+    load_bytecode 'library/Test/More.pbc'
 
     # get the testing functions
     .local pmc exports, curr_namespace, test_namespace

Modified: trunk/runtime/parrot/library/Test/Builder.pir
==============================================================================
--- trunk/runtime/parrot/library/Test/Builder.pir       (original)
+++ trunk/runtime/parrot/library/Test/Builder.pir       Sat Dec  1 20:01:10 2007
@@ -5,7 +5,7 @@
 =head1 SYNOPSIS
 
     # load this library
-    load_bytecode 'library/Test/Builder.pir'
+    load_bytecode 'library/Test/Builder.pbc'
 
     # create a new Test::Builder object
     .local pmc test
@@ -46,9 +46,9 @@
 .namespace [ 'Test::Builder' ]
 
 .sub _initialize :load
-    load_bytecode 'library/Test/Builder/Test.pir'
-    load_bytecode 'library/Test/Builder/Output.pir'
-    load_bytecode 'library/Test/Builder/TestPlan.pir'
+    load_bytecode 'library/Test/Builder/Test.pbc'
+    load_bytecode 'library/Test/Builder/Output.pbc'
+    load_bytecode 'library/Test/Builder/TestPlan.pbc'
 
     .local pmc tb_class
 

Modified: trunk/runtime/parrot/library/Test/Builder/Tester.pir
==============================================================================
--- trunk/runtime/parrot/library/Test/Builder/Tester.pir        (original)
+++ trunk/runtime/parrot/library/Test/Builder/Tester.pir        Sat Dec  1 
20:01:10 2007
@@ -7,7 +7,7 @@
 =head1 SYNOPSIS
 
     # load this library
-    load_bytecode 'library/Test/Builder/Tester.pir'
+    load_bytecode 'library/Test/Builder/Tester.pbc'
 
     # grab the subroutines you want to use
     .local pmc plan
@@ -154,7 +154,7 @@
 .namespace [ 'Test::Builder::Tester' ]
 
 .sub _initialize :load
-    load_bytecode 'library/Test/Builder.pir'
+    load_bytecode 'library/Test/Builder.pbc'
 
     .local pmc test
     .local pmc output

Modified: trunk/runtime/parrot/library/Test/More.pir
==============================================================================
--- trunk/runtime/parrot/library/Test/More.pir  (original)
+++ trunk/runtime/parrot/library/Test/More.pir  Sat Dec  1 20:01:10 2007
@@ -5,7 +5,7 @@
 =head1 SYNOPSIS
 
     # load this library
-    load_bytecode 'library/Test/More.pir'
+    load_bytecode 'library/Test/More.pbc'
 
     # get the testing functions
     .local pmc exports, curr_namespace, test_namespace
@@ -64,7 +64,7 @@
 .namespace [ 'Test'; 'More' ]
 
 .sub _initialize :load
-    load_bytecode 'library/Test/Builder.pir'
+    load_bytecode 'library/Test/Builder.pbc'
 
     .local pmc test
     test = new 'Test::Builder'
@@ -696,9 +696,9 @@
 
     .local pmc p6rule_compile
     load_bytecode "PGE.pbc"
-    load_bytecode "PGE/Dumper.pir"
-    load_bytecode "PGE/Text.pir"
-    load_bytecode "PGE/Util.pir"
+    load_bytecode "PGE/Dumper.pbc"
+    load_bytecode "PGE/Text.pbc"
+    load_bytecode "PGE/Util.pbc"
     p6rule_compile = compreg "PGE::P6Regex"
 
     .local string diagnostic

Reply via email to