aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver-test/function-tests.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-04 14:13:46 +0100
committerGitHub Enterprise <[email protected]>2026-03-04 14:13:46 +0100
commit0763d09a81e5a1d3df11763a7ec75e7860c9510a (patch)
tree074575ba6ea259044a179eab0bb396d37268fb09 /src/zenserver-test/function-tests.cpp
parentnative xmake toolchain definition for UE-clang (#805) (diff)
downloadzen-0763d09a81e5a1d3df11763a7ec75e7860c9510a.tar.xz
zen-0763d09a81e5a1d3df11763a7ec75e7860c9510a.zip
compute orchestration (#763)
- Added local process runners for Linux/Wine, Mac with some sandboxing support - Horde & Nomad provisioning for development and testing - Client session queues with lifecycle management (active/draining/cancelled), automatic retry with configurable limits, and manual reschedule API - Improved web UI for orchestrator, compute, and hub dashboards with WebSocket push updates - Some security hardening - Improved scalability and `zen exec` command Still experimental - compute support is disabled by default
Diffstat (limited to 'src/zenserver-test/function-tests.cpp')
-rw-r--r--src/zenserver-test/function-tests.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/zenserver-test/function-tests.cpp b/src/zenserver-test/function-tests.cpp
deleted file mode 100644
index 82848c6ad..000000000
--- a/src/zenserver-test/function-tests.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright Epic Games, Inc. All Rights Reserved.
-
-#include <zencore/zencore.h>
-
-#if ZEN_WITH_TESTS
-
-# include <zencore/compactbinary.h>
-# include <zencore/compactbinarybuilder.h>
-# include <zencore/string.h>
-# include <zencore/testing.h>
-# include <zenutil/zenserverprocess.h>
-
-# include "zenserver-test.h"
-
-namespace zen::tests {
-
-using namespace std::literals;
-
-TEST_SUITE_BEGIN("server.function");
-
-TEST_CASE("function.run")
-{
- std::filesystem::path TestDir = TestEnv.CreateNewTestDir();
-
- ZenServerInstance Instance(TestEnv);
- Instance.SetDataDir(TestDir);
- Instance.SpawnServer(13337);
-
- ZEN_INFO("Waiting...");
-
- Instance.WaitUntilReady();
-}
-
-TEST_SUITE_END();
-
-} // namespace zen::tests
-
-#endif