You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2017/12/19 10:59:44 UTC

[1/2] ant git commit: adding a delay did not help

Repository: ant
Updated Branches:
  refs/heads/master c2708623b -> c2c821a38


adding a delay did not help

This reverts commit c2708623b83f93dba1bf46f744d9f6ecc145b691.


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/f9cdf33b
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/f9cdf33b
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/f9cdf33b

Branch: refs/heads/master
Commit: f9cdf33b5607bd3f5c2aaeebe48a0baed73d3b66
Parents: c270862
Author: Stefan Bodewig <bo...@apache.org>
Authored: Tue Dec 19 11:53:20 2017 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Tue Dec 19 11:53:20 2017 +0100

----------------------------------------------------------------------
 src/etc/testcases/taskdefs/optional/unix/symlink.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/f9cdf33b/src/etc/testcases/taskdefs/optional/unix/symlink.xml
----------------------------------------------------------------------
diff --git a/src/etc/testcases/taskdefs/optional/unix/symlink.xml b/src/etc/testcases/taskdefs/optional/unix/symlink.xml
index d986e8b..134f29f 100644
--- a/src/etc/testcases/taskdefs/optional/unix/symlink.xml
+++ b/src/etc/testcases/taskdefs/optional/unix/symlink.xml
@@ -44,7 +44,7 @@
        before they have finnished (hopefully). Tweak if needed.
   -->
 
-  <property name="delay" value="2"/>
+  <property name="delay" value="0"/>
  
   <import file="../../../buildfiletest-base.xml"/>
 


[2/2] ant git commit: more logging. who is wrong, symlink or available?

Posted by bo...@apache.org.
more logging. who is wrong, symlink or available?


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/c2c821a3
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/c2c821a3
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/c2c821a3

Branch: refs/heads/master
Commit: c2c821a38a54f0dc5e4a1b81d18dbd0423c89318
Parents: f9cdf33
Author: Stefan Bodewig <bo...@apache.org>
Authored: Tue Dec 19 11:59:11 2017 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Tue Dec 19 11:59:11 2017 +0100

----------------------------------------------------------------------
 src/etc/testcases/taskdefs/optional/unix/symlink.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/c2c821a3/src/etc/testcases/taskdefs/optional/unix/symlink.xml
----------------------------------------------------------------------
diff --git a/src/etc/testcases/taskdefs/optional/unix/symlink.xml b/src/etc/testcases/taskdefs/optional/unix/symlink.xml
index 134f29f..1b6baa5 100644
--- a/src/etc/testcases/taskdefs/optional/unix/symlink.xml
+++ b/src/etc/testcases/taskdefs/optional/unix/symlink.xml
@@ -308,6 +308,12 @@
 
     <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"/>