]> source.dussan.org Git - aspectj.git/commitdiff
static ref to static variable
authorwisberg <wisberg>
Tue, 5 Oct 2004 20:05:36 +0000 (20:05 +0000)
committerwisberg <wisberg>
Tue, 5 Oct 2004 20:05:36 +0000 (20:05 +0000)
build/testsrc/BuildModuleTests.java

index 828478f641caefc623f72fb645160d33d9d1c036..8a03cc65e0ec6a79aabcddd0d0337b236b4ec1c0 100644 (file)
@@ -27,7 +27,7 @@ public class BuildModuleTests extends TestCase {
     /** if true, then replace old headers with new first */
     private static final boolean replacing = false; // XXX never to enable again...
     
-    /** if any replace failed, halt all */
+    /** replace commented out below - if any replace failed, halt all */
     private static boolean replaceFailed = false;
     
     private static final String BASE_DIR = "../";
@@ -132,9 +132,9 @@ public class BuildModuleTests extends TestCase {
         int fails = Checklics.runDirect(moduleDir.getPath(), license);
         if (0 != fails) {
             if (replacing) {
-                replaceFailed = true;
+                BuildModuleTests.replaceFailed = true;
             }
-            assertTrue(label + " fails", false);
+            assertTrue(label + " fails", !BuildModuleTests.replaceFailed);
         }
     }