Skip to content

Commit 0b2e746

Browse files
committed
testrunner: do not load std.cfg in executor tests
1 parent 123a360 commit 0b2e746

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/testprocessexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class TestProcessExecutorBase : public TestFixture {
5151

5252
private:
5353
#ifdef HAS_THREADING_MODEL_FORK
54-
/*const*/ Settings settings = settingsBuilder().library("std.cfg").build();
54+
/*const*/ Settings settings;
5555
bool useFS;
5656

5757
std::string fprefix() const

test/testsingleexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class TestSingleExecutorBase : public TestFixture {
3939
TestSingleExecutorBase(const char * const name, bool useFS) : TestFixture(name), useFS(useFS) {}
4040

4141
private:
42-
/*const*/ Settings settings = settingsBuilder().library("std.cfg").build();
42+
/*const*/ Settings settings;
4343
bool useFS;
4444

4545
std::string fprefix() const

test/testthreadexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class TestThreadExecutorBase : public TestFixture {
5151

5252
private:
5353
#ifdef HAS_THREADING_MODEL_THREAD
54-
/*const*/ Settings settings = settingsBuilder().library("std.cfg").build();
54+
/*const*/ Settings settings;
5555
bool useFS;
5656

5757
std::string fprefix() const

0 commit comments

Comments
 (0)