aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute-test/zencompute-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zencompute-test/zencompute-test.cpp')
-rw-r--r--src/zencompute-test/zencompute-test.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/zencompute-test/zencompute-test.cpp b/src/zencompute-test/zencompute-test.cpp
new file mode 100644
index 000000000..237812e12
--- /dev/null
+++ b/src/zencompute-test/zencompute-test.cpp
@@ -0,0 +1,32 @@
+// Copyright Epic Games, Inc. All Rights Reserved.
+
+#include <zencompute/zencompute.h>
+#include <zencore/filesystem.h>
+#include <zencore/logging.h>
+#include <zencore/zencore.h>
+
+#if ZEN_PLATFORM_LINUX || ZEN_PLATFORM_MAC
+# include <sys/time.h>
+# include <sys/resource.h>
+# include <zencore/except.h>
+#endif
+
+#if ZEN_WITH_TESTS
+# define ZEN_TEST_WITH_RUNNER 1
+# include <zencore/testing.h>
+#endif
+
+int
+main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[])
+{
+#if ZEN_WITH_TESTS
+ zen::zencompute_forcelinktests();
+
+ zen::logging::InitializeLogging();
+ zen::MaximizeOpenFileCount();
+
+ return ZEN_RUN_TESTS(argc, argv);
+#else
+ return 0;
+#endif
+}