Browse Source

disabling LengthTest#testEach as

it uses a pathconvert to get a list of files
and compares this to a list of files returned in the Length
task. The order of files in a fileset is not defined, and on
my machine it is a different order that than returned by
the Length task.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277298 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 20 years ago
parent
commit
623f7ff41a
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/testcases/org/apache/tools/ant/taskdefs/LengthTest.java

+ 3
- 1
src/testcases/org/apache/tools/ant/taskdefs/LengthTest.java View File

@@ -34,7 +34,9 @@ public class LengthTest extends BuildFileTest {
} }


public void testEach() { public void testEach() {
executeTarget("testEach");
// Disable this test as the order of files in a fileset is
// not specified
// executeTarget("testEach");
} }


public void testAll() { public void testAll() {


Loading…
Cancel
Save