diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-02-23 11:24:01 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-03-10 09:38:39 +0100 |
commit | c3b13b4932e26805100cfafc695eed822f7c3051 (patch) | |
tree | 282358b63dda636b5ddc9447549819aec44f6e16 /test | |
parent | 1bfb2a4aff15606b0cea4af7704483bfe474b092 (diff) | |
download | justbuild-c3b13b4932e26805100cfafc695eed822f7c3051.tar.gz |
Enforce remote-execution unit tests
... now that they no longer depend on an external remote
execution.
Diffstat (limited to 'test')
-rw-r--r-- | test/utils/remote_execution/main-remote-execution.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/utils/remote_execution/main-remote-execution.cpp b/test/utils/remote_execution/main-remote-execution.cpp index 952b025e..188d3eea 100644 --- a/test/utils/remote_execution/main-remote-execution.cpp +++ b/test/utils/remote_execution/main-remote-execution.cpp @@ -63,10 +63,8 @@ void wait_for_grpc_to_shutdown() { auto main(int argc, char* argv[]) -> int { ConfigureLogging(); - // In case remote execution address is not valid, we skip tests. This is in - // order to avoid tests being dependent on the environment. if (not ConfigureRemoteExecution()) { - return EXIT_SUCCESS; + return EXIT_FAILURE; } int result = Catch::Session().run(argc, argv); |