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

Unified Diff: test/debugger/testcfg.py

Issue 2447073007: [debugger] Various break-related functionality in test wrapper (Closed)
Patch Set: Move DebugEvent to DebugWrapper to preserve old API 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
« no previous file with comments | « test/debugger/test-api.js ('k') | test/debugger/wrapper/break-on-debugger-stmt.js » ('j') | 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 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()
« no previous file with comments | « test/debugger/test-api.js ('k') | test/debugger/wrapper/break-on-debugger-stmt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698