]> source.dussan.org Git - aspectj.git/commitdiff
works for me! on Linux, on Windows, on JDK 1.4, on JDK 1.3...
authoracolyer <acolyer>
Fri, 6 Aug 2004 09:43:26 +0000 (09:43 +0000)
committeracolyer <acolyer>
Fri, 6 Aug 2004 09:43:26 +0000 (09:43 +0000)
adding better message to the assert so we can hopefully find out why
the build machine is getting upset.

org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java

index 29c97075f163740f86761636c75e48da602695e6..ed6eb66f669fa375d19156ef4856c0c7d2b721a9 100644 (file)
@@ -300,7 +300,8 @@ public class BuildArgParserTestCase extends TestCase {
                AjBuildConfig config = genBuildConfig(new String[] { 
                        "-bootclasspath", PATH }, 
                        messageWriter);         
-               assertTrue(config.getClasspath().toString(), ((String)config.getClasspath().get(0)).indexOf(PATH) != -1); 
+               assertTrue("Should find '" + PATH + "' contained in the first entry of '" + config.getClasspath().toString(),
+                               ((String)config.getClasspath().get(0)).indexOf(PATH) != -1); 
 
                config = genBuildConfig(new String[] { 
                        },