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

index 5ae1d50e36fab2e54a61d6e35af64ab78177ab73..508bc1af03c196c8627016d90095203110476f14 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2004 IBM Corporation
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     Matthew Webster     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     Matthew Webster     initial implementation
  * ******************************************************************/
 
 package org.aspectj.weaver.loadtime;
@@ -28,10 +28,10 @@ import junit.framework.TestCase;
 
 /**
  * @author websterm
- * 
+ *
  */
 public class WeavingURLClassLoaderTest extends TestCase {
-       
+
        private final static String TESTDATA_PATH = "../weaver/testdata";
 
        private final static String ASPECTJRT = "../runtime/target/classes";
@@ -360,6 +360,7 @@ public class WeavingURLClassLoaderTest extends TestCase {
                        // Expecting: java.lang.NoClassDefFoundError: LTWAspect
                        String m = ex.getMessage();
                        if (!m.contains("java.lang.NoClassDefFoundError")) {
+                               new RuntimeException("Unexpected problem in testIncompletePath", ex).printStackTrace();
                                fail("Expecting java.lang.NoClassDefFoundError but caught " + ex);
                        }
                }