aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/testsrc/BuildModuleTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/testsrc/BuildModuleTests.java b/build/testsrc/BuildModuleTests.java
index 828478f64..8a03cc65e 100644
--- a/build/testsrc/BuildModuleTests.java
+++ b/build/testsrc/BuildModuleTests.java
@@ -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);
}
}