This is an automated email from the ASF dual-hosted git repository.
mbenson pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git
The following commit(s) were added to refs/heads/master by this push:
new f1ca496 fix testcase x-platform
f1ca496 is described below
commit f1ca496b6e9d67d4b6ab495d3c216dbc43b3547e
Author: Matt Benson <[email protected]>
AuthorDate: Thu Feb 10 09:07:56 2022 -0600
fix testcase x-platform
---
src/tests/antunit/taskdefs/pathconvert-test.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/tests/antunit/taskdefs/pathconvert-test.xml
b/src/tests/antunit/taskdefs/pathconvert-test.xml
index 0a31302..57274e8 100644
--- a/src/tests/antunit/taskdefs/pathconvert-test.xml
+++ b/src/tests/antunit/taskdefs/pathconvert-test.xml
@@ -95,9 +95,10 @@
<target name="testDirsep">
<pathconvert property="result" dirsep="|">
- <file file="/foo/bar/baz" />
+ <file file="foo/bar/baz" />
+ <globmapper from="${basedir}/*" to="*" />
</pathconvert>
- <au:assertPropertyEquals name="result" value="|foo|bar|baz" />
+ <au:assertPropertyEquals name="result" value="foo|bar|baz" />
</target>
<target name="testNoSetonempty">