| Index: test/inspector/testcfg.py
|
| diff --git a/test/inspector/testcfg.py b/test/inspector/testcfg.py
|
| index fc498aa113dcd0331ceb54a6d07dab5021c00f11..23d5aac85404a571ea0b79b9bc5e96222a1ec7d4 100644
|
| --- a/test/inspector/testcfg.py
|
| +++ b/test/inspector/testcfg.py
|
| @@ -13,6 +13,7 @@ from testrunner.objects import testcase
|
| FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
|
| PROTOCOL_TEST_JS = "protocol-test.js"
|
| EXPECTED_SUFFIX = "-expected.txt"
|
| +RESOURCES_FOLDER = "resources"
|
|
|
| class InspectorProtocolTestSuite(testsuite.TestSuite):
|
|
|
| @@ -24,6 +25,8 @@ class InspectorProtocolTestSuite(testsuite.TestSuite):
|
| for dirname, dirs, files in os.walk(os.path.join(self.root), followlinks=True):
|
| for dotted in [x for x in dirs if x.startswith('.')]:
|
| dirs.remove(dotted)
|
| + if dirname.endswith(os.path.sep + RESOURCES_FOLDER):
|
| + continue
|
| dirs.sort()
|
| files.sort()
|
| for filename in files:
|
|
|