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

Unified Diff: test/debugger/testcfg.py

Issue 2447073007: [debugger] Various break-related functionality in test wrapper (Closed)
Patch Set: Port further tests, wrap listener invocation, add --allow-natives-syntax to test-runner default fla… Created 4 years, 2 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
Index: test/debugger/testcfg.py
diff --git a/test/debugger/testcfg.py b/test/debugger/testcfg.py
index b6db6babd7022bfbe58a7c2080d23cceba3a3e01..8606423e588e6bfab0c5f90dfd9f6541f77ea7ad 100644
--- a/test/debugger/testcfg.py
+++ b/test/debugger/testcfg.py
@@ -33,7 +33,7 @@ class DebuggerTestSuite(testsuite.TestSuite):
def GetFlagsForTestCase(self, testcase, context):
source = self.GetSourceForTest(testcase)
- flags = ["--enable-inspector"] + context.mode_flags
+ flags = ["--enable-inspector", "--allow-natives-syntax"] + context.mode_flags
flags_match = re.findall(FLAGS_PATTERN, source)
for match in flags_match:
flags += match.strip().split()

Powered by Google App Engine
This is Rietveld 408576698