summaryrefslogtreecommitdiffstats
path: root/testing/testsrc
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-08-17 18:28:35 +0000
committerwisberg <wisberg>2003-08-17 18:28:35 +0000
commit4f7f27df445f1bb2b915ad2ffd4e1bb0e6756e3f (patch)
tree7f78a744640d2bee81f755a67b381df2f48227ee /testing/testsrc
parentdd7bee990b077e7778150b23dc50183fe319d1f7 (diff)
downloadaspectj-4f7f27df445f1bb2b915ad2ffd4e1bb0e6756e3f.tar.gz
aspectj-4f7f27df445f1bb2b915ad2ffd4e1bb0e6756e3f.zip
paring globals to those used, then using them consistently
Diffstat (limited to 'testing/testsrc')
-rw-r--r--testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java b/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java
index d9b89b203..eb858da48 100644
--- a/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java
+++ b/testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java
@@ -17,6 +17,7 @@ import java.util.ArrayList;
import org.aspectj.bridge.*;
import org.aspectj.bridge.MessageHandler;
+import org.aspectj.testing.harness.bridge.Globals;
import org.aspectj.util.*;
import org.aspectj.util.LangUtil;
@@ -42,7 +43,7 @@ public class AjcTaskCompileCommandTest extends TestCase {
list.add("-d");
list.add(getClassesDir().getAbsolutePath());
list.add("-classpath");
- list.add(new File("../lib/test/aspectjrt.jar").getAbsolutePath());
+ list.add(Globals.F_aspectjrt_jar.getAbsolutePath());
}
static boolean doWait(IMessageHolder holder, int seconds, int timeout) {