test: fix single test runner regression

When ESM support was added it created a regression in the test runner
that broke the ability to run individual tests. This commit
re-introduces the use of `NormalizePath` which fixes the regression
in the test runner

Refs: https://github.com/nodejs/node/pull/15300
PR-URL: https://github.com/nodejs/node/pull/15329
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Timothy Gu 2017-09-11 14:22:22 +08:00 committed by Myles Borins
parent 210fc72e87
commit cb44cd4936
No known key found for this signature in database
GPG Key ID: 933B01F40B5CA946
1 changed files with 1 additions and 1 deletions

View File

@ -789,7 +789,7 @@ class TestConfiguration(object):
if len(path) > len(file):
return False
for i in xrange(len(path)):
if not path[i].match(file[i]):
if not path[i].match(NormalizePath(file[i])):
return False
return True