adding better message to the assert so we can hopefully find out why
the build machine is getting upset.
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[] {
},