diff options
| author | Stefan Boberg <[email protected]> | 2026-03-18 11:20:36 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-18 11:20:36 +0100 |
| commit | 60a90b5faa6ae885ebf852b98412aba2dec1a722 (patch) | |
| tree | cf1eed74d0360095e50635e04f66452e56a4d99c /src/zenserver-test/zenserver-test.cpp | |
| parent | Merge branch 'main' into sb/local-crashreports (diff) | |
| parent | Compute batching (#849) (diff) | |
| download | zen-sb/local-crashreports.tar.xz zen-sb/local-crashreports.zip | |
Merge branch 'main' into sb/local-crashreportssb/local-crashreports
Diffstat (limited to 'src/zenserver-test/zenserver-test.cpp')
| -rw-r--r-- | src/zenserver-test/zenserver-test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver-test/zenserver-test.cpp b/src/zenserver-test/zenserver-test.cpp index e89812c1f..42632682b 100644 --- a/src/zenserver-test/zenserver-test.cpp +++ b/src/zenserver-test/zenserver-test.cpp @@ -15,6 +15,7 @@ # include <zencore/testutils.h> # include <zencore/thread.h> # include <zencore/timer.h> +# include <zencore/trace.h> # include <zenhttp/httpclient.h> # include <zenhttp/packageformat.h> # include <zenutil/config/commandlineoptions.h> @@ -134,8 +135,7 @@ main(int argc, char** argv) ZEN_INFO("Running tests...(base dir: '{}')", TestBaseDir); zen::testing::TestRunner Runner; - Runner.SetDefaultSuiteFilter("server.*"); - Runner.ApplyCommandLine(argc, argv); + Runner.ApplyCommandLine(argc, argv, "server.*"); return Runner.Run(); } |