diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-03-20 12:35:20 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-03-20 17:06:56 +0100 |
commit | 20d9ae259f57e7f80919b1615de1b777f9b473ad (patch) | |
tree | aa2f0acd557bd6f916e7420b409d5f873da95105 /test/end-to-end/serve-service | |
parent | dc8354a74dbec2a6dbde23e4b245676a1a842880 (diff) | |
download | justbuild-20d9ae259f57e7f80919b1615de1b777f9b473ad.tar.gz |
Extend serve tests to cover both, standalone serve and separate remote execution
Diffstat (limited to 'test/end-to-end/serve-service')
-rw-r--r-- | test/end-to-end/serve-service/TARGETS | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/test/end-to-end/serve-service/TARGETS b/test/end-to-end/serve-service/TARGETS index 6236dab7..7eeecafe 100644 --- a/test/end-to-end/serve-service/TARGETS +++ b/test/end-to-end/serve-service/TARGETS @@ -149,7 +149,7 @@ [["end-to-end", "tool-under-test"], ["end-to-end", "mr-tool-under-test"]] , "repos": ["serve-many-targets (data)"] } -, "TESTS": +, "TESTS (unconfigured)": { "type": "install" , "tainted": ["test"] , "arguments_config": ["TEST_COMPATIBLE_REMOTE"] @@ -182,4 +182,26 @@ , [["./", "serve-distdir-root", "TESTS"], "serve-distdir-root"] ] } +, "TESTS (separate remote)": + { "type": "configure" + , "tainted": ["test"] + , "target": "TESTS (unconfigured)" + , "config": + {"type": "singleton_map", "key": "TEST_STANDALONE_SERVE", "value": false} + } +, "TESTS (standalone serve)": + { "type": "configure" + , "tainted": ["test"] + , "target": "TESTS (unconfigured)" + , "config": + {"type": "singleton_map", "key": "TEST_STANDALONE_SERVE", "value": true} + } +, "TESTS": + { "type": "install" + , "tainted": ["test"] + , "dirs": + [ ["TESTS (separate remote)", "separate-remote"] + , ["TESTS (standalone serve)", "standalone-serve"] + ] + } } |