// Copyright Epic Games, Inc. All Rights Reserved. #include #include #include #include #if ZEN_PLATFORM_LINUX || ZEN_PLATFORM_MAC # include # include # include #endif #if ZEN_WITH_TESTS # define DOCTEST_CONFIG_IMPLEMENT # include # undef DOCTEST_CONFIG_IMPLEMENT #endif int main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[]) { #if ZEN_WITH_TESTS zen::zenstore_forcelinktests(); zen::logging::InitializeLogging(); zen::MaximizeOpenFileCount(); return doctest::Context(argc, argv).run(); #else #endif }