[svn:parrot] r36924 - trunk/tools/dev

rurban at svn.parrot.org rurban at svn.parrot.org
Sat Feb 21 13:35:38 UTC 2009


Author: rurban
Date: Sat Feb 21 13:35:37 2009
New Revision: 36924
URL: https://trac.parrot.org/parrot/changeset/36924

Log:
[tools] skip t/native_pbc from the pbc_disassemble steps

Modified:
   trunk/tools/dev/ops_not_tested.pl

Modified: trunk/tools/dev/ops_not_tested.pl
==============================================================================
--- trunk/tools/dev/ops_not_tested.pl	Sat Feb 21 12:36:12 2009	(r36923)
+++ trunk/tools/dev/ops_not_tested.pl	Sat Feb 21 13:35:37 2009	(r36924)
@@ -55,7 +55,9 @@
 my $pbcfiles;
 File::Find::find(
     {
-        wanted => sub { m/\.pbc$/i and push @$pbcfiles => $File::Find::name },
+        wanted => sub { m/\.pbc$/i
+                        and $File::Find::dir !~ m/native_pbc/
+                        and push @$pbcfiles => $File::Find::name },
         nochdir => 1,
     },
     @dirs,


More information about the parrot-commits mailing list