]> source.dussan.org Git - aspectj.git/commitdiff
making paths absolute flushed out a Linux file system dependency in one of the
authoracolyer <acolyer>
Fri, 6 Aug 2004 08:44:04 +0000 (08:44 +0000)
committeracolyer <acolyer>
Fri, 6 Aug 2004 08:44:04 +0000 (08:44 +0000)
test case constants (not added by me may I add ;) ). Since I was developing
on Linux, I didn't catch it.

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

index 58ebc3f26cee9aafc43bcbfaf6fa63ceedf484d4..29c97075f163740f86761636c75e48da602695e6 100644 (file)
@@ -296,7 +296,7 @@ public class BuildArgParserTestCase extends TestCase {
        }
 
        public void testBootclasspath() throws InvalidInputException {
-               final String PATH = "mumble/rt.jar";
+               final String PATH = "mumble" + File.separator + "rt.jar";
                AjBuildConfig config = genBuildConfig(new String[] { 
                        "-bootclasspath", PATH }, 
                        messageWriter);