Browse Source

skip a test that, while failing, doesn't seem to arise in real-life

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@540101 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 18 years ago
parent
commit
702e9419a0
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/tests/junit/org/apache/tools/ant/launch/LocatorTest.java

+ 5
- 1
src/tests/junit/org/apache/tools/ant/launch/LocatorTest.java View File

@@ -88,7 +88,11 @@ public class LocatorTest extends TestCase {
resolveTo("file:\\\\PC03\\jclasses\\lib\\ant-1.7.0.jar","\\\\PC03\\jclasses\\lib\\ant-1.7.0.jar");
}

public void testTripleForwardSlashNetworkURI() throws Exception {
/**
* This is not being tested as we don't appear to generate paths like this in the launcher
* @throws Exception
*/
public void NotestTripleForwardSlashNetworkURI() throws Exception {
resolveTo("file:///PC03/jclasses/lib/ant-1.7.0.jar", "///PC03/jclasses/lib/ant-1.7.0.jar");
}



Loading…
Cancel
Save