From: wisberg Date: Thu, 14 Oct 2004 23:13:31 +0000 (+0000) Subject: set static variable to avoid reading value set by other tests X-Git-Tag: V1_2_1~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=22a8bfca49914270469791b409d4d63d3bb83be2;p=aspectj.git set static variable to avoid reading value set by other tests --- diff --git a/tests/harness/aspectpath/Main.java b/tests/harness/aspectpath/Main.java index 15b5d742e..56ca7f6a2 100644 --- a/tests/harness/aspectpath/Main.java +++ b/tests/harness/aspectpath/Main.java @@ -1,5 +1,8 @@ public class Main { + static { + System.setProperty("A.before", "false"); + } public static void main(String[] args) { if (!Boolean.getBoolean("A.before")) { throw new Error("property A.before not set by aspect A.java");