summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2008-10-29 19:08:05 +0000
committeraclement <aclement>2008-10-29 19:08:05 +0000
commitcffe291340c69186f6a5c986adbecf02038ba590 (patch)
tree3838eca11046196a6d113ff6bfa4cb110058a8ca
parent671b0bc0b2ceaca8d5382b874fdf470c1dbb76e2 (diff)
downloadaspectj-cffe291340c69186f6a5c986adbecf02038ba590.tar.gz
aspectj-cffe291340c69186f6a5c986adbecf02038ba590.zip
249710: test
-rw-r--r--tests/bugs163/pr249710/Foo.java3
-rw-r--r--tests/src/org/aspectj/systemtest/ajc163/Ajc163Tests.java8
-rw-r--r--tests/src/org/aspectj/systemtest/ajc163/ajc163.xml5
3 files changed, 12 insertions, 4 deletions
diff --git a/tests/bugs163/pr249710/Foo.java b/tests/bugs163/pr249710/Foo.java
new file mode 100644
index 000000000..16d3ddd69
--- /dev/null
+++ b/tests/bugs163/pr249710/Foo.java
@@ -0,0 +1,3 @@
+
+public aspect Foo perthis(execution(* *(..))) {
+} \ No newline at end of file
diff --git a/tests/src/org/aspectj/systemtest/ajc163/Ajc163Tests.java b/tests/src/org/aspectj/systemtest/ajc163/Ajc163Tests.java
index b707e26b7..7563a372b 100644
--- a/tests/src/org/aspectj/systemtest/ajc163/Ajc163Tests.java
+++ b/tests/src/org/aspectj/systemtest/ajc163/Ajc163Tests.java
@@ -18,14 +18,14 @@ import org.aspectj.testing.XMLBasedAjcTestCase;
public class Ajc163Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
+ public void testTerminateAfterCompilation_pr249710() {
+ runTest("terminateAfterCompilation");
+ }
+
public void testItdCCE_pr250091() {
runTest("itd cce");
}
- // class A from java.net.URLClassLoader@1e4853f extends class java.lang.Object (false)
- // class java.lang.ClassNotFoundException from null extends class java.lang.Exception (true)
- // class Base from java.net.URLClassLoader@1e4853f extends class java.lang.Object (false)
-
public void testBreakingRecovery_pr226163() {
runTest("breaking recovery");
}
diff --git a/tests/src/org/aspectj/systemtest/ajc163/ajc163.xml b/tests/src/org/aspectj/systemtest/ajc163/ajc163.xml
index 6b712f489..921444abe 100644
--- a/tests/src/org/aspectj/systemtest/ajc163/ajc163.xml
+++ b/tests/src/org/aspectj/systemtest/ajc163/ajc163.xml
@@ -19,6 +19,11 @@
</compile>
</ajc-test>
+ <ajc-test dir="bugs163/pr249710" title="terminateAfterCompilation">
+ <compile files="Foo.java" options="-1.5">
+ </compile>
+ </ajc-test>
+
<ajc-test dir="bugs163/pr250632" title="type conversion in generic itd">
<compile files="MyAspect.java" options="-1.5"/>
</ajc-test>