From ace4e334bc5fb299d2890b5e3f35dfd84ea32606 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 30 Nov 2021 16:34:52 -0500 Subject: Use test-server on CI (#2034) * #include an absolute path didn't work - because paths were taken to always be relative. * Vary what SpawnType is used, if one isn't explicitly set. * Terminate on linux if exec fails. * Use a more sophisticated sleeping mechanism. * Attempt to make CI tests to work on aarch64 debug. Small fixes. --- tools/slang-test/options.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tools/slang-test/options.cpp') diff --git a/tools/slang-test/options.cpp b/tools/slang-test/options.cpp index d4dedcf81..48a43d621 100644 --- a/tools/slang-test/options.cpp +++ b/tools/slang-test/options.cpp @@ -134,10 +134,6 @@ static bool _isSubCommand(const char* arg) { optionsOut->defaultSpawnType = SpawnType::UseFullyIsolatedTestServer; } - else if (strcmp(arg, "-use-test-server") == 0) - { - optionsOut->defaultSpawnType = SpawnType::UseTestServer; - } else if (strcmp(arg, "-v") == 0) { optionsOut->shouldBeVerbose = true; -- cgit v1.2.3