diff options
author | aclement <aclement> | 2008-01-16 23:54:24 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-01-16 23:54:24 +0000 |
commit | 478aedaa7985c6d09e6bc43a18fd0ca129b0c66c (patch) | |
tree | a1e405a3af461db8dcc060084ef0885c92b28157 /tests/src | |
parent | 0295de4deb362d0c239c4ea62e6aa171e2f30dac (diff) | |
download | aspectj-478aedaa7985c6d09e6bc43a18fd0ca129b0c66c.tar.gz aspectj-478aedaa7985c6d09e6bc43a18fd0ca129b0c66c.zip |
AspectJ6: some error messages changed
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/ajc150.xml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml index cac283505..3cbc2b692 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml @@ -197,9 +197,7 @@ <message kind="error" text="@DeclareParents: defaultImpl="X$IImpl" has no public no-arg constructor"/> </compile> </ajc-test> - - - + <ajc-test dir="bugs150/pr119570" pr="119570" title="spurious override method warning"> <compile files="NodeImpl.java,INode.java,ParameterizedDP.java" options="-1.5"/> <run class="bugs.ParameterizedDP"/> @@ -210,6 +208,11 @@ <run class="bugs.ParameterizedDP"/> </ajc-test> + <ajc-test dir="bugs150/pr119570" pr="119570" title="spurious override method warning - 3"> + <compile files="SimpleTest.java" options="-1.5"/> + <run class="SimpleTest"/> + </ajc-test> + <ajc-test dir="bugs150/pr120521" pr="120521" title="named pointcut not resolved in pertarget pointcut"> <compile files="PerTargetSubaspectError.java"/> </ajc-test> @@ -508,7 +511,9 @@ <ajc-test dir="bugs150/pr113066" title="possible static imports bug - 2"> <compile files="Consts2.java,TestNPE2.java" options="-1.5"> - <message kind="error" line="2" text="The import a.Consts2.A_CONST cannot be resolved"/> + <message kind="error" line="2" text="The field Consts2.a.Consts2.A_CONST is not visible"/> + <!-- message has changed with 3.3 compiler upgrade, it used to be this: --> + <!-- message kind="error" line="2" text="The import a.Consts2.A_CONST cannot be resolved"/--> </compile> </ajc-test> |