diff options
Diffstat (limited to 'test/utils/remote_execution/main-remote-execution.cpp')
-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); |