diff options
author | aclement <aclement> | 2009-10-31 19:18:57 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-10-31 19:18:57 +0000 |
commit | f4a8d6af08ec26a2b5e07f6da663762350137ae9 (patch) | |
tree | 6f7c97b33da3b084c9a0dca0c86c8c93c1918807 /tests | |
parent | 657bba8c14a09313dddecf3a37f38cb33aec72a6 (diff) | |
download | aspectj-f4a8d6af08ec26a2b5e07f6da663762350137ae9.tar.gz aspectj-f4a8d6af08ec26a2b5e07f6da663762350137ae9.zip |
execution fastmatch tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc167/ajc167.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc167/ajc167.xml b/tests/src/org/aspectj/systemtest/ajc167/ajc167.xml index 1140441a1..2c8bcd05a 100644 --- a/tests/src/org/aspectj/systemtest/ajc167/ajc167.xml +++ b/tests/src/org/aspectj/systemtest/ajc167/ajc167.xml @@ -2,6 +2,18 @@ <suite> + <ajc-test dir="bugs167/pr293510" title="execution fastmatch - 1"> + <compile files="CaseOne.java" options="-1.5 -showWeaveInfo"> + <message kind="weave" text="Join point 'method-execution(void pkg.C.m())' in Type 'pkg.C' (CaseOne.java:10) advised by before advice from 'pkg.X' (CaseOne.java:14)"/> + </compile> + </ajc-test> + + <ajc-test dir="bugs167/pr293510" title="execution fastmatch - 2"> + <compile files="CaseTwo.java" options="-1.5 -showWeaveInfo"> + <message kind="weave" text="Join point 'method-execution(void pkg.C.m())' in Type 'pkg.C' (CaseTwo.java:9) advised by before advice from 'pkg.X' (CaseTwo.java:13)"/> + </compile> + </ajc-test> + <ajc-test dir="bugs167/pr293203" title="anno matching"> <compile files="Foo.java" options="-1.5"/> <run class="Foo"> |