One more fix to Windows file path handling. (#30133)

This commit is contained in:
Bob Nystrom 2017-07-10 17:02:56 -07:00 committed by GitHub
parent 15f80a42d6
commit b1fdd84817

View file

@ -1033,7 +1033,7 @@ class StandardTestSuite extends TestSuite {
// TODO(Issue 14651): If we're on dartium, we need to pass [packageRoot]
// on to the browser (it may be test specific).
var filePath = info.filePath;
var fileName = filePath.toString();
var fileName = filePath.toNativePath();
var optionsFromFile = info.optionsFromFile;
var compilationTempDir = createCompilationOutputDirectory(info.filePath);