| Index: tools/run-tests.py
|
| diff --git a/tools/run-tests.py b/tools/run-tests.py
|
| index fe8091efb36ed1c50adb666df39b0f80a65d1692..c94457fe6d296479393ea99044536d2bfe002a55 100755
|
| --- a/tools/run-tests.py
|
| +++ b/tools/run-tests.py
|
| @@ -60,27 +60,33 @@ ARCH_GUESS = utils.DefaultArch()
|
| # expected runtimes (suites with slow test cases first). These groups are
|
| # invoked in seperate steps on the bots.
|
| TEST_MAP = {
|
| + # This needs to stay in sync with test/bot_default.isolate.
|
| "bot_default": [
|
| "mjsunit",
|
| "cctest",
|
| "webkit",
|
| + "fuzzer",
|
| "message",
|
| "preparser",
|
| "intl",
|
| "unittests",
|
| ],
|
| + # This needs to stay in sync with test/default.isolate.
|
| "default": [
|
| "mjsunit",
|
| "cctest",
|
| + "fuzzer",
|
| "message",
|
| "preparser",
|
| "intl",
|
| "unittests",
|
| ],
|
| + # This needs to stay in sync with test/ignition.isolate.
|
| "ignition": [
|
| "mjsunit",
|
| "cctest",
|
| ],
|
| + # This needs to stay in sync with test/optimize_for_size.isolate.
|
| "optimize_for_size": [
|
| "mjsunit",
|
| "cctest",
|
|
|