blob: e2b6ac9bd7ae692e0010dcdb7c395043d2eacacf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zencore/testing.h>
#include <zenutil/zenutil.h>
#include <zencore/memory/newdelete.h>
int
main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[])
{
#if ZEN_WITH_TESTS
return zen::testing::RunTestMain(argc, argv, "zenutil-test", zen::zenutil_forcelinktests);
#else
return 0;
#endif
}
|