From 22a8bfca49914270469791b409d4d63d3bb83be2 Mon Sep 17 00:00:00 2001 From: wisberg Date: Thu, 14 Oct 2004 23:13:31 +0000 Subject: [PATCH] set static variable to avoid reading value set by other tests --- tests/harness/aspectpath/Main.java | 3 +++ 1 file changed, 3 insertions(+) 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"); -- 2.39.5