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

coke at svn.parrot.org coke at svn.parrot.org
Mon Dec 21 17:49:48 UTC 2009


Author: coke
Date: Mon Dec 21 17:49:47 2009
New Revision: 43183
URL: https://trac.parrot.org/parrot/changeset/43183

Log:
Check files in $(IO_DIR); fix sense of comparison for diagnostic output.

(This test is currently failing.)

Modified:
   trunk/tools/dev/checkdepend.pl

Modified: trunk/tools/dev/checkdepend.pl
==============================================================================
--- trunk/tools/dev/checkdepend.pl	Mon Dec 21 16:56:57 2009	(r43182)
+++ trunk/tools/dev/checkdepend.pl	Mon Dec 21 17:49:47 2009	(r43183)
@@ -52,6 +52,7 @@
 }
 $rules =~ s/\\\n/ /g;
 $rules =~ s/\Q$(SRC_DIR)\E/src/g;
+$rules =~ s/\Q$(IO_DIR)\E/src\/io/g;
 $rules =~ s/\Q$(PMC_INC_DIR)\E/include/g;
 $rules =~ s/\Q$(O)\E//g;
 
@@ -86,7 +87,7 @@
 
             # this isn't the actual comparison, just to give nice output
             # on failure.
-            is($inc, $declared, $file);
+            is($declared, $inc, $file);
             $failed = 1;
         }
     }


More information about the parrot-commits mailing list