diff options
author | aclement <aclement> | 2004-09-06 15:13:46 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-09-06 15:13:46 +0000 |
commit | d1551bda9b14c6c2035e0c8df6f09bf4634041de (patch) | |
tree | 1d2951b60fc089430b704ee3689e4c659b582dee /org.aspectj.ajdt.core/testsrc | |
parent | 27d204cf9f57a0cc06f4d7c5800c93eb55edc02a (diff) | |
download | aspectj-d1551bda9b14c6c2035e0c8df6f09bf4634041de.tar.gz aspectj-d1551bda9b14c6c2035e0c8df6f09bf4634041de.zip |
Part of fix for AJDT bug 72671
Bootclasspath specification for compiling is not possible
Diffstat (limited to 'org.aspectj.ajdt.core/testsrc')
-rw-r--r-- | org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java index ed6eb66f6..252a13ab3 100644 --- a/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java +++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java @@ -112,7 +112,7 @@ public class BuildArgParserTestCase extends TestCase { public void testPathResolutionFromConfigArgs() { String FILE_PATH = "@" + TEST_DIR + "configWithClasspathExtdirsBootCPArgs.lst"; AjBuildConfig config = genBuildConfig(new String[] { FILE_PATH }, messageWriter); - List classpath = config.getClasspath(); + List classpath = config.getFullClasspath(); // should have three entries, resolved relative to location of .lst file assertEquals("Three entries in classpath",3,classpath.size()); Iterator cpIter = classpath.iterator(); @@ -300,13 +300,13 @@ public class BuildArgParserTestCase extends TestCase { AjBuildConfig config = genBuildConfig(new String[] { "-bootclasspath", PATH }, messageWriter); - assertTrue("Should find '" + PATH + "' contained in the first entry of '" + config.getClasspath().toString(), - ((String)config.getClasspath().get(0)).indexOf(PATH) != -1); + assertTrue("Should find '" + PATH + "' contained in the first entry of '" + config.getBootclasspath().toString(), + ((String)config.getBootclasspath().get(0)).indexOf(PATH) != -1); config = genBuildConfig(new String[] { }, messageWriter); - assertTrue(config.getClasspath().toString(), !config.getClasspath().get(0).equals(PATH)); + assertTrue(config.getBootclasspath().toString(), !config.getBootclasspath().get(0).equals(PATH)); } public void testOutputJar() throws InvalidInputException { |