Browse Source

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>
canary-base
Timothy Gu 7 years ago
committed by Myles Borins
parent
commit
cb44cd4936
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 2
      tools/test.py

2
tools/test.py

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

Loading…
Cancel
Save