From 434825d37457f77c94a7435a34053e2d533eaef6 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Mon, 11 Sep 2017 14:22:22 +0800 Subject: [PATCH] test: fix single test runner regression Refs: https://github.com/nodejs/node/pull/15300 --- tools/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index 6839f4e1b2acb1..935ec6c1fb8682 100755 --- a/tools/test.py +++ b/tools/test.py @@ -789,7 +789,7 @@ def Contains(self, path, file): 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