Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index 6839f4e1b2a..935ec6c1fb8 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -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