summaryrefslogtreecommitdiff
path: root/tools/slang-test/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/slang-test/options.h')
-rw-r--r--tools/slang-test/options.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/slang-test/options.h b/tools/slang-test/options.h
index 3b62c903b..cf86bc901 100644
--- a/tools/slang-test/options.h
+++ b/tools/slang-test/options.h
@@ -38,7 +38,8 @@ protected:
enum class SpawnType
{
- UseExe,
+ Default, ///< Default - typically uses shared library, on CI may use TestServer
+ UseExe, ///< Tests using executable (for example slangc)
UseSharedLibrary, ///< Runs testing in process (a crash tan take down the
UseTestServer, ///< Use the test server to isolate testing
UseFullyIsolatedTestServer, ///< Uses a test server for each test (slow!)
@@ -78,11 +79,9 @@ struct Options
bool dumpOutputOnFailure = false;
// Set the default spawn type to use
- // Set to SpawnType::UseProxy, if isolation of test execution is desired.
// Having tests isolated, slows down testing considerably, so using UseSharedLibrary is the most
// desirable default usually.
- SpawnType defaultSpawnType = SpawnType::UseSharedLibrary;
- //SpawnType defaultSpawnType = SpawnType::UseProxy;
+ SpawnType defaultSpawnType = SpawnType::Default;
// kind of output to generate
TestOutputMode outputMode = TestOutputMode::Default;