diff options
author | jhugunin <jhugunin> | 2003-03-12 23:22:11 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-03-12 23:22:11 +0000 |
commit | d5731957188b6280e850cf2bbc238469244b6d86 (patch) | |
tree | 7cd826b0dd91d579afc65da32de4e3b904acb25b /tests | |
parent | 7746fcb7e977c7a91bd70081a2197a999ec18ad3 (diff) | |
download | aspectj-d5731957188b6280e850cf2bbc238469244b6d86.tar.gz aspectj-d5731957188b6280e850cf2bbc238469244b6d86.zip |
fixed for graceful error handling (i.e. the compiler doesn't dump stack ;-)
in response to tests now moved out of failing
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ajcTests.xml | 14 | ||||
-rw-r--r-- | tests/ajcTestsFailing.xml | 14 | ||||
-rw-r--r-- | tests/jimTests.xml | 12 |
3 files changed, 14 insertions, 26 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 40998854b..1e192ba8a 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5697,4 +5697,18 @@ <compile files="CflowBindingOrig.java"/> <run class="CflowBindingOrig"/> </ajc-test> + + <ajc-test dir="errors" + title="type not imported in around advice"> + <compile files="TypeNotImportedInAroundCE.java"> + <message kind="error" line="10"/> + </compile> + </ajc-test> + + <ajc-test dir="errors" + title="type not imported in aspect"> + <compile files="TypeInAspectNotImportedCE.java"> + <message kind="error" line="6"/> + </compile> + </ajc-test> </suite> diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml index 4f31f4087..578f0aa75 100644 --- a/tests/ajcTestsFailing.xml +++ b/tests/ajcTestsFailing.xml @@ -49,18 +49,4 @@ <run class="AspectInitError"/> </ajc-test> - <ajc-test dir="errors" - title="type not imported in around advice"> - <compile files="TypeNotImportedInAroundCE.java"> - <message kind="error" line="10"/> - </compile> - </ajc-test> - - <ajc-test dir="errors" - title="type not imported in aspect"> - <compile files="TypeInAspectNotImportedCE.java"> - <message kind="error" line="6"/> - </compile> - </ajc-test> - </suite> diff --git a/tests/jimTests.xml b/tests/jimTests.xml index c03e61f44..f4adb0f97 100644 --- a/tests/jimTests.xml +++ b/tests/jimTests.xml @@ -1,19 +1,7 @@ <!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"> <suite> - <ajc-test dir="errors" - title="type not imported in around advice"> - <compile files="TypeNotImportedInAroundCE.java"> - <message kind="error" line="10"/> - </compile> - </ajc-test> - <ajc-test dir="errors" - title="type not imported in aspect"> - <compile files="TypeInAspectNotImportedCE.java"> - <message kind="error" line="6"/> - </compile> - </ajc-test> <!-- |