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