aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute-test/zencompute-test.cpp
blob: 60aaeab1d59dba5c4c6468a601b17fafd7d729b0 (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 <zencompute/zencompute.h>
#include <zencore/testing.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, "zencompute-test", zen::zencompute_forcelinktests);
#else
	return 0;
#endif
}