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

Unified Diff: tools/run-tests.py

Issue 2425973002: [debugger] basic test infrastructure for new debugger test api. (Closed)
Patch Set: fix 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
« test/debugger/debugger.isolate ('K') | « test/optimize_for_size.isolate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index e0e44aa5595dbe4e6d241460d1fbe3bb72cd74d5..99ccc6f04e3960657e6a72665ce44b3f9f552be1 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -66,6 +66,7 @@ TEST_MAP = {
# This needs to stay in sync with test/bot_default.isolate.
"bot_default": [
"mjsunit",
+ "debugger",
"cctest",
"webkit",
"inspector",
@@ -78,6 +79,7 @@ TEST_MAP = {
# This needs to stay in sync with test/default.isolate.
"default": [
"mjsunit",
+ "debugger",
"cctest",
"fuzzer",
"message",
@@ -88,6 +90,7 @@ TEST_MAP = {
# This needs to stay in sync with test/optimize_for_size.isolate.
"optimize_for_size": [
"mjsunit",
+ "debugger",
"cctest",
"webkit",
"inspector",
@@ -610,6 +613,9 @@ def ProcessOptions(options):
if not options.enable_inspector:
TEST_MAP["bot_default"].remove("inspector")
TEST_MAP["optimize_for_size"].remove("inspector")
+ TEST_MAP["default"].remove("debugger")
+ TEST_MAP["bot_default"].remove("debugger")
+ TEST_MAP["optimize_for_size"].remove("debugger")
return True
« test/debugger/debugger.isolate ('K') | « test/optimize_for_size.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698