Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Unified Diff: test/inspector/testcfg.py

Issue 2710903003: [inspector] added master test for break locations (Closed)
Patch Set: addressed comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/inspector/protocol-test.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « test/inspector/protocol-test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698