Browse Source

remove debug output that is no longer needed

master
Stefan Bodewig 7 years ago
parent
commit
eec1ab7606
2 changed files with 1 additions and 7 deletions
  1. +0
    -6
      src/etc/testcases/taskdefs/optional/unix/symlink.xml
  2. +1
    -1
      src/tests/junit/org/apache/tools/ant/taskdefs/optional/unix/SymlinkTest.java

+ 0
- 6
src/etc/testcases/taskdefs/optional/unix/symlink.xml View File

@@ -308,12 +308,6 @@

<sleep seconds="${delay}"/> <!-- make sure OS has time to catch up -->

<pathconvert property="symtest1.content">
<fileset dir="${output}/symtest1"/>
<map from="${output}/symtest1" to=""/>
</pathconvert>
<echo>Content of ${output}/symtest1 is ${symtest1.content}</echo>

<available file="${output}/symtest1/link1"
property="test.recreate.link1.recreated"/>



+ 1
- 1
src/tests/junit/org/apache/tools/ant/taskdefs/optional/unix/SymlinkTest.java View File

@@ -171,7 +171,7 @@ public class SymlinkTest {
if (dirlinkRem != null) {
fail(dirlinkRem);
}
System.err.println(buildRule.getFullLog());
assertNotNull("Failed to recreate link1",
p.getProperty("test.recreate.link1.recreated"));
assertNotNull("Failed to recreate link2",


Loading…
Cancel
Save