diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-07-27 16:36:53 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-07-27 16:51:17 +0200 |
commit | 106ad30405914d20c05a32b32157f17da57c570e (patch) | |
tree | d31e734a4493590631ab1fc30d2a59e329b52f2e | |
parent | e0663fd415934287ed338784abdf8181c6c77e24 (diff) | |
download | justbuild-106ad30405914d20c05a32b32157f17da57c570e.tar.gz |
link install-cas test to test suite
While there, fix a typo in the setup.
-rw-r--r-- | test/end-to-end/remote-execution/TARGETS | 3 | ||||
-rw-r--r-- | test/end-to-end/remote-execution/install-cas.sh | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/end-to-end/remote-execution/TARGETS b/test/end-to-end/remote-execution/TARGETS index 951499d1..01c80184 100644 --- a/test/end-to-end/remote-execution/TARGETS +++ b/test/end-to-end/remote-execution/TARGETS @@ -44,6 +44,7 @@ , "TESTS": { "type": "install" , "tainted": ["test"] - , "deps": ["native-protocol", "large-blobs", "upload-test", "install"] + , "deps": + ["native-protocol", "large-blobs", "upload-test", "install", "install-cas"] } } diff --git a/test/end-to-end/remote-execution/install-cas.sh b/test/end-to-end/remote-execution/install-cas.sh index e39ff41e..0a2f16a2 100644 --- a/test/end-to-end/remote-execution/install-cas.sh +++ b/test/end-to-end/remote-execution/install-cas.sh @@ -24,7 +24,7 @@ LOCAL_ARGS="--local-build-root ${LBRDIR}" REMOTE_ARGS="${LOCAL_ARGS} -r ${REMOTE_EXECUTION_ADDRESS}" if [ "${REMOTE_EXECUTION_PROPERTIES:-}" != "" ] then - REMOTE_ARGS="${REMOTE_EXECUTION_ARGS} --remote-execution-property ${REMOTE_EXECUTION_PROPERTIES}" + REMOTE_ARGS="${REMOTE_ARGS} --remote-execution-property ${REMOTE_EXECUTION_PROPERTIES}" fi if [ -n "${COMPATIBLE:-}" ] then |