diff options
author | jhugunin <jhugunin> | 2003-03-12 00:48:57 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-03-12 00:48:57 +0000 |
commit | 0fb5f693794e571ab693813cbc80578b2bc7b470 (patch) | |
tree | f43f5dc1970801c72be8d644a60562c03fdb9f07 /tests | |
parent | fd1560a8a1c91d1b65c738d4e9163d93700d1f00 (diff) | |
download | aspectj-0fb5f693794e571ab693813cbc80578b2bc7b470.tar.gz aspectj-0fb5f693794e571ab693813cbc80578b2bc7b470.zip |
fixed Bug 29934
runtime NullPointerException when applying around advice to other around advice
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ajcTests.xml | 7 | ||||
-rw-r--r-- | tests/ajcTestsFailing.xml | 7 | ||||
-rw-r--r-- | tests/jimTests.xml | 7 |
3 files changed, 13 insertions, 8 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index a2e0b3c6e..ba710c8b9 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5659,4 +5659,11 @@ <message kind="warning" line="74"/> </compile> </ajc-test> + + <ajc-test dir="new" pr="29934" + title="can't apply around advice to the execution of around advice" + keywords="from-resolved_10x"> + <compile files="CflowCycles.java"/> + <run class="CflowCycles"/> + </ajc-test> </suite> diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml index b7fadc146..5964c4aee 100644 --- a/tests/ajcTestsFailing.xml +++ b/tests/ajcTestsFailing.xml @@ -13,13 +13,6 @@ <message kind="error" line="78"/> </compile> </ajc-test> - - <ajc-test dir="new" pr="29934" - title="can't apply around advice to the execution of around advice" - keywords="from-resolved_10x"> - <compile files="CflowCycles.java"/> - <run class="CflowCycles"/> - </ajc-test> <ajc-test dir="new" pr="660" title="illegal name binding in around cflow" keywords="from-resolved_104"> diff --git a/tests/jimTests.xml b/tests/jimTests.xml index 53a3a9ef1..e55e54ff7 100644 --- a/tests/jimTests.xml +++ b/tests/jimTests.xml @@ -1,6 +1,11 @@ <!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"> <suite> - + <ajc-test dir="new" pr="29934" + title="can't apply around advice to the execution of around advice" + keywords="from-resolved_10x"> + <compile files="CflowCycles.java"/> + <run class="CflowCycles"/> + </ajc-test> <!-- |