diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-17 15:54:08 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-07-17 15:54:08 +0200 |
commit | 6f8242d1a2f4c3eaeb856bcc33535a3faf6cf071 (patch) | |
tree | ae159be5054141ac7ef6f5e4dd6c8c4804866f43 | |
parent | 62d204ff4cc94c12c1635f189255710901682825 (diff) | |
download | justbuild-6f8242d1a2f4c3eaeb856bcc33535a3faf6cf071.tar.gz |
Test ["end-to-end/gc", "reconstruct-executable"]: drop unnecessary restriction
This test verifies properties of just, hence the precise nature of the
just-mr tool does not matter.
-rw-r--r-- | test/end-to-end/gc/TARGETS | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/test/end-to-end/gc/TARGETS b/test/end-to-end/gc/TARGETS index 104ef360..0d392d50 100644 --- a/test/end-to-end/gc/TARGETS +++ b/test/end-to-end/gc/TARGETS @@ -32,15 +32,11 @@ { "type": "install" , "tainted": ["test"] , "deps": - { "type": "++" - , "$1": - [ ["basic", "compactification", "export", "tc-deps"] - , { "type": "if" - , "cond": {"type": "var", "name": "TEST_BOOTSTRAP_JUST_MR"} - , "then": [] - , "else": ["reconstruct-executable"] - } - ] - } + [ "basic" + , "compactification" + , "export" + , "tc-deps" + , "reconstruct-executable" + ] } } |