Chromium Code Reviews| Index: tools/run-tests.py |
| diff --git a/tools/run-tests.py b/tools/run-tests.py |
| index b473efe50c2a65bc70f5cabaf383f254249a7a08..bf4fad822e21194f3b08c7e60262157d59fe2db0 100755 |
| --- a/tools/run-tests.py |
| +++ b/tools/run-tests.py |
| @@ -65,36 +65,37 @@ ARCH_GUESS = utils.DefaultArch() |
| TEST_MAP = { |
| # This needs to stay in sync with test/bot_default.isolate. |
| "bot_default": [ |
| - "mjsunit", |
| - "debugger", |
| "cctest", |
| - "webkit", |
| - "inspector", |
| + "debugger", |
|
Michael Achenbach
2016/11/03 08:23:40
If debugger isn't dog slow, it should also be move
|
| "fuzzer", |
| + "inspector", |
| + "intl", |
| "message", |
| + "mjsunit", |
| "preparser", |
| - "intl", |
| "unittests", |
| + "webkit", |
| ], |
| # This needs to stay in sync with test/default.isolate. |
| "default": [ |
| - "mjsunit", |
| - "debugger", |
| "cctest", |
| + "debugger", |
| "fuzzer", |
| + "inspector", |
| + "intl", |
| "message", |
| + "mjsunit", |
| "preparser", |
| - "intl", |
| "unittests", |
| ], |
| # This needs to stay in sync with test/optimize_for_size.isolate. |
| "optimize_for_size": [ |
| - "mjsunit", |
| - "debugger", |
| "cctest", |
| - "webkit", |
| + "debugger", |
| "inspector", |
| "intl", |
| + "mjsunit", |
| + "webkit", |
| ], |
| "unittests": [ |
| "unittests", |