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