diff options
author | acolyer <acolyer> | 2005-11-22 09:47:59 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-11-22 09:47:59 +0000 |
commit | e08f73a4b32ac78362e79b4b49e8a191dfc5d233 (patch) | |
tree | e944cc7a815063e65bc2e501be77a7e2ef0e5bce /tests/src | |
parent | 554e73397c0b80ce32e56cf3adeb6921783e005d (diff) | |
download | aspectj-e08f73a4b32ac78362e79b4b49e8a191dfc5d233.tar.gz aspectj-e08f73a4b32ac78362e79b4b49e8a191dfc5d233.zip |
tests for pr103097
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 4 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/ajc150.xml | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java index d5df0462c..14833bc63 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -730,6 +730,10 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("declare soft and adviceexecution"); } + public void testDeclareSoftWithExclusions() { + runTest("declare soft and exclusions"); + } + /* * Load-time weaving bugs */ diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml index 120083cf7..7a19516b6 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml @@ -84,7 +84,12 @@ <ajc-test dir="bugs150" title="declare soft and adviceexecution" pr="103051"> <compile files="Pr103051.aj" options="-Xdev:Pinpoint"/> </ajc-test> - + + <ajc-test dir="bugs150" title="declare soft and exclusions" pr="103097"> + <compile files="Pr103097.aj"/> + <run class="Pr103097"/> + </ajc-test> + <ajc-test dir="bugs150/pr114436" title="ClassFormatError binary weaving perthis"> <compile files="SimpleTrace.aj,ConcreteSimpleTracing.aj" outjar="aspects.jar"/> <compile files="TestClass.java" aspectpath="aspects.jar"/> |