8027973: javax/xml/jaxp/transform/jdk8004476/XSLTExFuncTest.java hangs (win)

Reviewed-by: alanb, dfuchs, joehw
This commit is contained in:
Patrick Zhang 2013-11-25 16:53:30 -08:00 committed by Joe Wang
parent 5e6a93fc20
commit fd33467c12
6 changed files with 3 additions and 3 deletions

View File

@ -66,10 +66,10 @@ public class XSLTExFuncTest extends TestBase {
xslFile = filepath + "/tokenize.xsl";
/**
* if (isWindows) { xslFile = "/" + xslFile; }
*
* On Windows platform it needs triple '/' for valid URL while double '/' is enough on Linux or Solaris.
* Here use file:/// directly to make it work on Windows and it will not impact other platforms.
*/
xslFileId = "file://" + xslFile;
xslFileId = "file:///" + xslFile;
}
/**