diff options
Diffstat (limited to 'test/end-to-end/TARGETS')
-rw-r--r-- | test/end-to-end/TARGETS | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/test/end-to-end/TARGETS b/test/end-to-end/TARGETS index b4f878b7..4959a4b4 100644 --- a/test/end-to-end/TARGETS +++ b/test/end-to-end/TARGETS @@ -61,23 +61,33 @@ } , "TESTS": { "type": ["@", "rules", "test", "suite"] - , "arguments_config": [] + , "arguments_config": ["TEST_BOOTSTRAP_JUST_MR"] , "stage": ["end-to-end"] , "deps": - [ "remote tests" - , ["./", "actions", "TESTS"] - , ["./", "build-fails", "TESTS"] - , ["./", "built-in-rules", "TESTS"] - , ["./", "cli", "TESTS"] - , ["./", "execution-service", "TESTS"] - , ["./", "gc", "TESTS"] - , ["./", "generated-binary", "TESTS"] - , ["./", "git-import", "TESTS"] - , ["./", "just-lock", "TESTS"] - , ["./", "symlinks", "TESTS"] - , ["./", "target-cache", "TESTS"] - , ["./", "target-tests", "TESTS"] - , ["./", "user-errors", "TESTS"] - ] + { "type": "`" + , "$1": + [ "remote tests" + , ["./", "actions", "TESTS"] + , ["./", "build-fails", "TESTS"] + , ["./", "built-in-rules", "TESTS"] + , ["./", "cli", "TESTS"] + , ["./", "execution-service", "TESTS"] + , ["./", "gc", "TESTS"] + , ["./", "generated-binary", "TESTS"] + , ["./", "git-import", "TESTS"] + , ["./", "just-lock", "TESTS"] + , { "type": ",@" + , "$1": + { "type": "if" + , "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"} + , "else": [["./", "profile", "TESTS"]] + } + } + , ["./", "symlinks", "TESTS"] + , ["./", "target-cache", "TESTS"] + , ["./", "target-tests", "TESTS"] + , ["./", "user-errors", "TESTS"] + ] + } } } |