diff options
author | jhugunin <jhugunin> | 2003-07-22 22:51:34 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-07-22 22:51:34 +0000 |
commit | 9894a3d4826ef3480a53aa7cd8d86804af3f1fdd (patch) | |
tree | 74e1f791f1edad64aaa894da598f653b0a1743f2 /tests/ajcTests.xml | |
parent | 026b2728aef846823419ebffceb57fe8161e3d15 (diff) | |
download | aspectj-9894a3d4826ef3480a53aa7cd8d86804af3f1fdd.tar.gz aspectj-9894a3d4826ef3480a53aa7cd8d86804af3f1fdd.zip |
fix and expanded tests for Bugzilla Bug 39462
Compiler crashes in jar and cflow
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 3f01a7cb6..e133841a2 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -6433,4 +6433,21 @@ <message kind="error" line="14"/> </compile> </ajc-test> + + <ajc-test dir="bugs/cflowAndJar" pr="39462" + title="Compiler crashes in jar and cflow (with no .jar)"> + <compile files="TestAspect.aj,Test.java,AbstractAspect.aj"> + <message kind="warning" line="16"/> + </compile> + <run class="Test"/> + </ajc-test> + + <ajc-test dir="bugs/cflowAndJar" pr="39462" + title="Compiler crashes in jar and cflow (with .jar)" + comment="make lib.jar with ajc -outjar lib.jar AbstractAspect.aj"> + <compile files="TestAspect.aj,Test.java" aspectpath="lib.jar"> + <message kind="warning" line="16"/> + </compile> + <run class="Test"/> + </ajc-test> </suite> |