You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ajc150-tests.xml 1.6KB

12345678910111213141516171819202122232425262728293031
  1. <!-- AspectJ v1.5.0 Tests -->
  2. <ajc-test dir="java5/bridgeMethods" pr="72766" title="Ignore bridge methods">
  3. <compile files="AspectX.aj" inpath="testcode.jar" options="-showWeaveInfo">
  4. <message kind="warning" line="7" text="pointcut did not match on the method call to a bridge method."/>
  5. </compile>
  6. </ajc-test>
  7. <ajc-test dir="decp" pr="80249" title="Order of types passed to compiler determines weaving behavior">
  8. <compile files="A.java,B.java,AspectX.java"/>
  9. <run class="B"/>
  10. <compile files="B.java,A.java,AspectX.java"/>
  11. <run class="B"/>
  12. </ajc-test>
  13. <ajc-test dir="bugs" pr="61568" title="Various kinds of ambiguous bindings">
  14. <compile files="AmbiguousBindings.aj">
  15. <message line="17" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
  16. <message line="19" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
  17. <message line="21" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
  18. <message line="23" text="ambiguous binding of parameter(s) x across '||' in pointcut"></message>
  19. <message line="25" text="ambiguous binding of parameter(s) foo across '||' in pointcut"></message>
  20. </compile>
  21. </ajc-test>
  22. <ajc-test dir="bugs" pr="61658" title="ambiguous args">
  23. <compile files="PR61658.java">
  24. <message line="17" text="ambiguous binding of parameter(s) a, b across '||' in pointcut"></message>
  25. </compile>
  26. </ajc-test>