]> source.dussan.org Git - aspectj.git/commitdiff
debug for test failure under github action
authorAndy Clement <aclement@pivotal.io>
Sun, 16 Aug 2020 23:43:41 +0000 (16:43 -0700)
committerAndy Clement <aclement@pivotal.io>
Sun, 16 Aug 2020 23:43:41 +0000 (16:43 -0700)
loadtime/src/test/java/org/aspectj/weaver/loadtime/WeavingURLClassLoaderTest.java

index 508bc1af03c196c8627016d90095203110476f14..c8c1418979113e095ef0f6a2c2c9d459a58684d2 100644 (file)
@@ -348,6 +348,8 @@ public class WeavingURLClassLoaderTest extends TestCase {
         * Aspects on ASPECTPATH but missing from CLASSPATH
         */
        public void testIncompletePath() {
+               System.out.println("ADVICE_ASPECTS exists? " + new File(ADVICE_ASPECTS).exists());
+               System.out.println("ASPECTJRT exists? " + new File(ASPECTJRT).exists());
                setSystemProperty(WeavingURLClassLoader.WEAVING_ASPECT_PATH, ADVICE_ASPECTS+File.pathSeparator+new File(ASPECTJRT).toString());
                setSystemProperty(WeavingURLClassLoader.WEAVING_CLASS_PATH, CLASSES_JAR);
                WeavingURLClassLoader loader = new WeavingURLClassLoader(getClass().getClassLoader());