diff options
Diffstat (limited to 'zenstore-test')
| -rw-r--r-- | zenstore-test/zenstore-test.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zenstore-test/zenstore-test.cpp b/zenstore-test/zenstore-test.cpp index e6bd92ab9..030b1159d 100644 --- a/zenstore-test/zenstore-test.cpp +++ b/zenstore-test/zenstore-test.cpp @@ -1,9 +1,16 @@ // Copyright Epic Games, Inc. All Rights Reserved. #include <zencore/logging.h> +#include <zencore/filesystem.h> #include <zencore/zencore.h> #include <zenstore/zenstore.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 DOCTEST_CONFIG_IMPLEMENT # include <zencore/testing.h> @@ -17,6 +24,7 @@ main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[]) zen::zenstore_forcelinktests(); zen::logging::InitializeLogging(); + zen::MaximizeOpenFileCount(); return doctest::Context(argc, argv).run(); #else |