diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-05-22 11:51:06 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-05-24 16:00:11 +0200 |
commit | dc2cc2d18381ab7bbef5bbce17736f5252b5da6c (patch) | |
tree | 1770725d29d32303cafd71d7929e3bbd59ed8b3c /test/end-to-end/target-cache | |
parent | d4396683860b5aed391a336692bacae71e1007cd (diff) | |
download | justbuild-dc2cc2d18381ab7bbef5bbce17736f5252b5da6c.tar.gz |
Split off tests into a separate logical repository
This allows better separation and, in particular, repositories
needed only for tests do not have to be provided for building the
tools. This also better documents which dependencies are only needed
for testing.
Diffstat (limited to 'test/end-to-end/target-cache')
-rw-r--r-- | test/end-to-end/target-cache/TARGETS | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/test/end-to-end/target-cache/TARGETS b/test/end-to-end/target-cache/TARGETS index fb3b42b9..b2e14a55 100644 --- a/test/end-to-end/target-cache/TARGETS +++ b/test/end-to-end/target-cache/TARGETS @@ -1,25 +1,23 @@ { "target-cache-hit": - { "type": ["test/end-to-end", "with remote"] + { "type": ["end-to-end", "with remote"] , "name": ["target-cache-hit"] , "test": ["target-cache-hit.sh"] , "deps": - [ ["test/end-to-end", "tool-under-test"] - , ["test/end-to-end", "mr-tool-under-test"] - ] + [["end-to-end", "tool-under-test"], ["end-to-end", "mr-tool-under-test"]] } , "artifacts-sync": - { "type": ["test/end-to-end", "with remote"] + { "type": ["end-to-end", "with remote"] , "name": ["artifacts-sync"] , "test": ["artifacts-sync.sh"] , "deps": - [ ["test/end-to-end", "tool-under-test"] + [ ["end-to-end", "tool-under-test"] , ["./", "test-data-artifacts-sync", "greetlib"] , ["./", "test-data-artifacts-sync", "pydicts"] , "bootstrap-src-staged" ] } , "bootstrap-src-staged": - {"type": "install", "dirs": [[["", "bootstrap-src"], "foo"]]} + {"type": "install", "dirs": [[["@", "src", "", "bootstrap-src"], "foo"]]} , "TESTS": { "type": "install" , "tainted": ["test"] |