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.

readme.txt 851B

12345678910111213141516171819202122232425
  1. This contains artifacts for two harness test cases,
  2. for classpath (jar and dir) and aspectpath.
  3. Binaries are in jars/*, and classesDir/*, and
  4. binary sources and a build script are in classpath-src.
  5. See specifications are in tests/ajcHarnessTests.xml, e.g.,
  6. <ajc-test dir="harness/classpathTest"
  7. title="specify jars and directories on classpath"
  8. keywords="purejava">
  9. <compile classpath="classesDir,jars/required.jar"
  10. files="Main.java"/>
  11. <run class="Main"/>
  12. </ajc-test>
  13. <ajc-test dir="harness/classpathTest"
  14. title="specify aspectpath and classpath jars and directories">
  15. <compile classpath="classesDir,jars/required.jar"
  16. aspectpath="jars/requiredAspects.jar"
  17. files="AspectMain.java"/>
  18. <run class="AspectMain"/>
  19. </ajc-test>