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

Unified Diff: test/debugger/testcfg.py

Issue 2831083003: [test] add --no-harness option to debugger tests. (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/testcfg.py
diff --git a/test/debugger/testcfg.py b/test/debugger/testcfg.py
index a07acbce5bd5f05dc4d20b8b8f6c3b520bffc119..bfb60f109c3fc84839fa55d8fa4d988e1a633637 100644
--- a/test/debugger/testcfg.py
+++ b/test/debugger/testcfg.py
@@ -51,7 +51,8 @@ class DebuggerTestSuite(testsuite.TestSuite):
break
files = []
- files.append(os.path.normpath(os.path.join(self.root, "..", "mjsunit", "mjsunit.js")))
+ if not context.no_harness and not NO_HARNESS_PATTERN.search(source):
caitp 2017/05/08 13:26:21 This line throws for me since NO_HARNESS_PATTERN i
Michael Achenbach 2017/05/08 13:34:23 Yea - the right side isn't covered on our bots. I'
+ files.append(os.path.normpath(os.path.join(self.root, "..", "mjsunit", "mjsunit.js")))
files.append(os.path.join(self.root, "test-api.js"))
files.extend([ os.path.normpath(os.path.join(self.root, '..', '..', f))
for f in files_list ])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698