// Copyright Epic Games, Inc. All Rights Reserved. #include #include #include #if ZEN_USE_MIMALLOC ZEN_THIRD_PARTY_INCLUDES_START # include ZEN_THIRD_PARTY_INCLUDES_END #endif #if ZEN_WITH_TESTS # define ZEN_TEST_WITH_RUNNER 1 # include #endif int main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[]) { #if ZEN_USE_MIMALLOC mi_version(); #endif #if ZEN_WITH_TESTS zen::zenstore_forcelinktests(); zen::logging::InitializeLogging(); zen::MaximizeOpenFileCount(); return ZEN_RUN_TESTS(argc, argv); #else return 0; #endif }