diff options
author | jhugunin <jhugunin> | 2003-08-08 01:23:31 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-08-08 01:23:31 +0000 |
commit | 3e5974557278e81a9891edd4269eca39a8d42f43 (patch) | |
tree | 3b6198180f7da196f47896ba3d5570bb58ebefe2 /tests/ajcTests.xml | |
parent | efc1cc47398443b33fe90da11c4cf1d14dc9c108 (diff) | |
download | aspectj-3e5974557278e81a9891edd4269eca39a8d42f43.tar.gz aspectj-3e5974557278e81a9891edd4269eca39a8d42f43.zip |
fix and tests for Bugzilla Bug 41123
Weaving failure when using injars
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 1a73d9990..5fa1ab82d 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -6667,4 +6667,40 @@ </compile> </ajc-test> + + <ajc-test dir="bugs/moreInterfaceLibrary" + pr="41123" + title="Weaving failure when using injars (no jars)"> + <compile + files="lib/ExecutionMonitor.aj,model/BusObj.java,model/MonitorBusObj.java"> + </compile> + </ajc-test> + + <ajc-test dir="bugs/moreInterfaceLibrary" + pr="41123" + title="Weaving failure when using injars (on aspectpath)"> + <compile + files="model/BusObj.java,model/MonitorBusObj.java" + aspectpath="lib.jar"> + </compile> + </ajc-test> + + <ajc-test dir="bugs/moreInterfaceLibrary" + pr="41123" + title="Weaving failure when using injars (on classpath)"> + <compile + files="model/BusObj.java,model/MonitorBusObj.java" + classpath="lib.jar"> + <message kind="error" line="3"/> + </compile> + </ajc-test> + + <ajc-test dir="bugs/moreInterfaceLibrary" + pr="41123" + title="Weaving failure when using injars (actual injars)"> + <compile + files="model/BusObj.java,model/MonitorBusObj.java,lib.jar"> + <message kind="error" line="3"/> + </compile> + </ajc-test> </suite> |