Skip to content

Commit

Permalink
tests: fix config rest
Browse files Browse the repository at this point in the history
  • Loading branch information
csegarragonz committed Aug 2, 2023
1 parent 0152a19 commit 7338f7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test/util/test_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ TEST_CASE("Test overriding system config initialisation", "[util]")
std::string overrideCpuCount = setEnvVar("OVERRIDE_CPU_COUNT", "4");
std::string noTopologyHints = setEnvVar("NO_TOPOLOGY_HINTS", "on");
std::string noSingleHost = setEnvVar("NO_SINGLE_HOST", "1");
std::string batchSchedulerMode = setEnvVar("BATCH_SCHEDULER_MODE", "foo-bar");

std::string globalTimeout = setEnvVar("GLOBAL_MESSAGE_TIMEOUT", "9876");
std::string boundTimeout = setEnvVar("BOUND_TIMEOUT", "6666");
Expand Down Expand Up @@ -119,6 +120,7 @@ TEST_CASE("Test overriding system config initialisation", "[util]")
setEnvVar("OVERRIDE_CPU_COUNT", overrideCpuCount);
setEnvVar("USE_TOPOLOGY_HINTS", noTopologyHints);
setEnvVar("NO_SINGLE_HOST", noSingleHost);
setEnvVar("BATCH_SCHEDULER_MODE", batchSchedulerMode);

setEnvVar("GLOBAL_MESSAGE_TIMEOUT", globalTimeout);
setEnvVar("BOUND_TIMEOUT", boundTimeout);
Expand Down

0 comments on commit 7338f7e

Please sign in to comment.