summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-08-28 18:29:46 +0000
committerwisberg <wisberg>2003-08-28 18:29:46 +0000
commit53973533a79645d5f43383aa390064e303670cf0 (patch)
treea0c0792af1fe4affaa1b1af99b1f9f97d56acb71 /testing
parent0f8a362edf5e81909bf782b667b213a6da3df0b2 (diff)
downloadaspectj-53973533a79645d5f43383aa390064e303670cf0.tar.gz
aspectj-53973533a79645d5f43383aa390064e303670cf0.zip
compiler run equals check wasn't testing argfiles, aspectpath, or sourceroots
Diffstat (limited to 'testing')
-rw-r--r--testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java b/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java
index c55b0a894..6cacaf42a 100644
--- a/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java
+++ b/testing/testsrc/org/aspectj/testing/harness/bridge/AjcSpecTest.java
@@ -206,10 +206,13 @@ public class AjcSpecTest extends TestCase {
CompilerRun.Spec r = ((CompilerRun) rhs).spec;
lhsSpec = l;
rhsSpec = r;
+ assertEquals(l.argfiles, r.argfiles);
+ assertEquals(l.aspectpath, r.aspectpath);
assertEquals(l.testSrcDirOffset, r.testSrcDirOffset);
assertEquals(l.compiler, r.compiler);
assertEquals(l.includeClassesDir, r.includeClassesDir);
assertEquals(l.reuseCompiler, r.reuseCompiler);
+ assertEquals(l.sourceroots, r.sourceroots);
} else if (c == JavaRun.class) {
JavaRun.Spec l = ((JavaRun) lhs).spec;
JavaRun.Spec r = ((JavaRun) rhs).spec;