Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix single test runner regression
Refs: #15300
  • Loading branch information
TimothyGu committed Sep 11, 2017
commit 434825d37457f77c94a7435a34053e2d533eaef6
2 changes: 1 addition & 1 deletion tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down