[svn:parrot] r38705 - in trunk/t/compilers/pge: . perl6regex

NotFound at svn.parrot.org NotFound at svn.parrot.org
Mon May 11 22:13:05 UTC 2009


Author: NotFound
Date: Mon May 11 22:13:04 2009
New Revision: 38705
URL: https://trac.parrot.org/parrot/changeset/38705

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

Modified:
   trunk/t/compilers/pge/00-basic.t
   trunk/t/compilers/pge/03-optable.t
   trunk/t/compilers/pge/06-grammar.t
   trunk/t/compilers/pge/perl6regex/01-regex.t
   trunk/t/compilers/pge/perl6regex/context.t
   trunk/t/compilers/pge/pge_text.t
   trunk/t/compilers/pge/pge_util.t

Modified: trunk/t/compilers/pge/00-basic.t
==============================================================================
--- trunk/t/compilers/pge/00-basic.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/00-basic.t	Mon May 11 22:13:04 2009	(r38705)
@@ -16,7 +16,7 @@
 =cut
 
 .sub main :main
-    load_bytecode 'Test/Builder.pir'
+    load_bytecode 'Test/Builder.pbc'
 
     .local pmc test
 

Modified: trunk/t/compilers/pge/03-optable.t
==============================================================================
--- trunk/t/compilers/pge/03-optable.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/03-optable.t	Mon May 11 22:13:04 2009	(r38705)
@@ -90,9 +90,9 @@
     my ( $test, $output, $msg, %opt ) = @_;
     my ($pir) = <<'CODE';
 .sub main :main
-    load_bytecode 'compilers/pge/PGE.pir'
-    load_bytecode 'dumper.pir'
-    load_bytecode 'PGE/Dumper.pir'
+    load_bytecode 'compilers/pge/PGE.pbc'
+    load_bytecode 'dumper.pbc'
+    load_bytecode 'PGE/Dumper.pbc'
 
     .local pmc optable
     $P0 = get_hll_global ['PGE'], 'OPTable'

Modified: trunk/t/compilers/pge/06-grammar.t
==============================================================================
--- trunk/t/compilers/pge/06-grammar.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/06-grammar.t	Mon May 11 22:13:04 2009	(r38705)
@@ -16,7 +16,7 @@
 =cut
 
 .sub main :main
-    load_bytecode 'Test/Builder.pir'
+    load_bytecode 'Test/Builder.pbc'
     load_bytecode 'PGE.pbc'
     load_bytecode 'PGE/Perl6Grammar.pbc'
     .include "iglobals.pasm"
@@ -120,7 +120,7 @@
     .param pmc    targets
     .param string description
 
-    load_bytecode 'Test/Builder.pir'
+    load_bytecode 'Test/Builder.pbc'
     .local pmc    test
                   test = new [ 'Test'; 'Builder' ]
 

Modified: trunk/t/compilers/pge/perl6regex/01-regex.t
==============================================================================
--- trunk/t/compilers/pge/perl6regex/01-regex.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/perl6regex/01-regex.t	Mon May 11 22:13:04 2009	(r38705)
@@ -55,7 +55,7 @@
 .const string TESTS = 'no_plan'
 
 .sub main :main
-    load_bytecode 'Test/Builder.pir'
+    load_bytecode 'Test/Builder.pbc'
     load_bytecode 'PGE.pbc'
     load_bytecode 'PGE/Dumper.pbc'
     load_bytecode 'String/Utils.pbc'

Modified: trunk/t/compilers/pge/perl6regex/context.t
==============================================================================
--- trunk/t/compilers/pge/perl6regex/context.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/perl6regex/context.t	Mon May 11 22:13:04 2009	(r38705)
@@ -27,10 +27,10 @@
 my $PRE = <<PRE;
 .sub 'main' :main
     load_bytecode "PGE.pbc"
-    load_bytecode "dumper.pir"
-    load_bytecode "PGE/Dumper.pir"
-    load_bytecode "PGE/Glob.pir"
-    load_bytecode "PGE/Text.pir"
+    load_bytecode "dumper.pbc"
+    load_bytecode "PGE/Dumper.pbc"
+    load_bytecode "PGE/Glob.pbc"
+    load_bytecode "PGE/Text.pbc"
     .local string target, pattern
     .local pmc perl6regex, rulesub, pir, exp, match
     perl6regex = compreg 'PGE::Perl6Regex'

Modified: trunk/t/compilers/pge/pge_text.t
==============================================================================
--- trunk/t/compilers/pge/pge_text.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/pge_text.t	Mon May 11 22:13:04 2009	(r38705)
@@ -30,7 +30,7 @@
     .local pmc bracketed
 
     load_bytecode 'PGE.pbc'
-    load_bytecode 'PGE/Text.pir'
+    load_bytecode 'PGE/Text.pbc'
 
     bracketed = get_global ['PGE';'Text'], "bracketed"
 

Modified: trunk/t/compilers/pge/pge_util.t
==============================================================================
--- trunk/t/compilers/pge/pge_util.t	Mon May 11 22:03:32 2009	(r38704)
+++ trunk/t/compilers/pge/pge_util.t	Mon May 11 22:13:04 2009	(r38705)
@@ -30,7 +30,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'
@@ -53,7 +53,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'
@@ -74,7 +74,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'
@@ -96,7 +96,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'
@@ -117,7 +117,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'
@@ -140,7 +140,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'
@@ -162,7 +162,7 @@
 
 .sub main :main
   load_bytecode 'PGE.pbc'
-  load_bytecode 'PGE/Util.pir'
+  load_bytecode 'PGE/Util.pbc'
 
   .local pmc split, p6rule, regex
   split  = get_global ['PGE';'Util'], 'split'


More information about the parrot-commits mailing list