diff options
| author | Stefan Boberg <[email protected]> | 2023-01-26 09:56:08 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-01-26 09:56:52 +0100 |
| commit | c3b906dec4589d0b06f4387dce26dd79a988c269 (patch) | |
| tree | 96e3947b7f76e3b255b21c2f70831ce121191492 /zenserver-test/zenserver-test.cpp | |
| parent | fix gc logging (#213) (diff) | |
| download | zen-c3b906dec4589d0b06f4387dce26dd79a988c269.tar.xz zen-c3b906dec4589d0b06f4387dce26dd79a988c269.zip | |
removed experimental mesh code
should be replaced with a proper implementation later
Diffstat (limited to 'zenserver-test/zenserver-test.cpp')
| -rw-r--r-- | zenserver-test/zenserver-test.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/zenserver-test/zenserver-test.cpp b/zenserver-test/zenserver-test.cpp index ee3c5b742..c08ad8e0a 100644 --- a/zenserver-test/zenserver-test.cpp +++ b/zenserver-test/zenserver-test.cpp @@ -2492,37 +2492,6 @@ TEST_CASE(".exec.basic") } # endif // ZEN_WITH_EXEC_SERVICES -TEST_CASE("mesh.basic") -{ -// --mesh option only available with ZEN_ENABLE_MESH -# if ZEN_ENABLE_MESH - using namespace std::literals; - - const int kInstanceCount = 4; - - ZEN_INFO("spawning {} instances", kInstanceCount); - - std::unique_ptr<ZenServerInstance> Instances[kInstanceCount]; - - for (int i = 0; i < kInstanceCount; ++i) - { - auto& Instance = Instances[i]; - - Instance = std::make_unique<ZenServerInstance>(TestEnv); - Instance->SetTestDir(TestEnv.CreateNewTestDir()); - Instance->EnableMesh(); - Instance->SpawnServer(13337 + i); - } - - for (int i = 0; i < kInstanceCount; ++i) - { - auto& Instance = Instances[i]; - - Instance->WaitUntilReady(); - } -# endif -} - class ZenServerTestHelper { public: |