From: wisberg Date: Tue, 5 Oct 2004 20:05:36 +0000 (+0000) Subject: static ref to static variable X-Git-Tag: V1_2_1~48 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=948bf91ad857793df643b387ea183ef7035e3d61;p=aspectj.git static ref to static variable --- 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); } }