diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-05 17:09:19 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-05 17:38:48 +0200 |
commit | 7add524e1bead6f549486c666837c4962b613e42 (patch) | |
tree | 537c67dbb8ddb2938d1a58a92244c89fce153255 | |
parent | 85058bbc6871923f5dc948a36d75efc226057263 (diff) | |
download | justbuild-7add524e1bead6f549486c666837c4962b613e42.tar.gz |
mark split-splice test as IO-heavy
-rw-r--r-- | test/end-to-end/remote-execution/TARGETS | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/end-to-end/remote-execution/TARGETS b/test/end-to-end/remote-execution/TARGETS index 1cd3b1a7..85fb6f8d 100644 --- a/test/end-to-end/remote-execution/TARGETS +++ b/test/end-to-end/remote-execution/TARGETS @@ -75,7 +75,8 @@ , "TESTS": { "type": "install" , "tainted": ["test"] - , "arguments_config": ["TEST_COMPATIBLE_REMOTE", "TEST_BOOTSTRAP_JUST_MR"] + , "arguments_config": + ["TEST_COMPATIBLE_REMOTE", "TEST_BOOTSTRAP_JUST_MR", "DROP_IO_HEAVY_TESTS"] , "deps": { "type": "++" , "$1": @@ -85,7 +86,6 @@ , "install" , "install-cas" , "dispatch" - , "split-splice" , "execute" ] , { "type": "if" @@ -99,6 +99,10 @@ , "then": [] , "else": ["add-to-cas"] } + , { "type": "if" + , "cond": {"type": "var", "name": "DROP_IO_HEAVY_TESTS"} + , "else": ["split-splice"] + } ] } } |