aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authoraclement <aclement>2004-08-18 09:53:28 +0000
committeraclement <aclement>2004-08-18 09:53:28 +0000
commit8837d683dc44f6c380b25359d7ce90b9a17e8a66 (patch)
tree48c3d656a7b871de071f876c937a01b2c8f13f0b /tests/src
parentf913f6597088b5aa5a97d8dced01ffcc12df74f3 (diff)
downloadaspectj-8837d683dc44f6c380b25359d7ce90b9a17e8a66.tar.gz
aspectj-8837d683dc44f6c380b25359d7ce90b9a17e8a66.zip
Removed 1.4 api (doh!)
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/org/aspectj/systemtest/ajc121/Ajc121Tests.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc121/Ajc121Tests.java b/tests/src/org/aspectj/systemtest/ajc121/Ajc121Tests.java
index 6127997d2..c857b40ca 100644
--- a/tests/src/org/aspectj/systemtest/ajc121/Ajc121Tests.java
+++ b/tests/src/org/aspectj/systemtest/ajc121/Ajc121Tests.java
@@ -231,10 +231,12 @@ public class Ajc121Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
String s = getLastRunResult().getStdErr();
assertTrue("Output should contain java.lang.ExceptionInInitializerError but is '"+s+"'",
s.indexOf("java.lang.ExceptionInInitializerError")!=-1);
- assertTrue("Output should contain 'CAUSE=org.aspectj.lang.NoAspectBoundException' but is '"+s+"'",
- s.indexOf("CAUSE=org.aspectj.lang.NoAspectBoundException")!=-1);
+ // No getCause on 1.3 JVMs
+// assertTrue("Output should contain 'CAUSE=org.aspectj.lang.NoAspectBoundException' but is '"+s+"'",
+// s.indexOf("CAUSE=org.aspectj.lang.NoAspectBoundException")!=-1);
}
+
public void test044_ITDnameClashes() {
runTest("ITD name clashes with private members");
}