MPTEST-49: Replace the hardcoded ':' by ${path.separator}. It didn't work on windows because of the drive in the directory name. For example : D:\.....

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@391824 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2006-04-05 21:51:31 +00:00
parent 9d7246697a
commit 751568de86

View File

@ -43,8 +43,8 @@
</j:if>
<ant:path id="_searchdir" location="${maven.test.searchdir}"/>
<maven:addPath id="maven.test.compile.src.set" refid="_searchdir"/>
<pathconvert pathsep=":" property="_testSrcDirs" refid="maven.test.compile.src.set"/>
<u:tokenize var="_listOfTestSrcDirs" delim=":">${_testSrcDirs}</u:tokenize>
<pathconvert pathsep="${path.separator}" property="_testSrcDirs" refid="maven.test.compile.src.set"/>
<u:tokenize var="_listOfTestSrcDirs" delim="${path.separator}">${_testSrcDirs}</u:tokenize>
<j:if test="${unitTestSourcesPresent == 'true' and context.getVariable('maven.test.skip') != 'true'}">