aboutsummaryrefslogtreecommitdiff
path: root/src/zenutil/zenutil.cpp
blob: c5414454984411a5b3a7f2f7a5451304ca26720c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Epic Games, Inc. All Rights Reserved.

#include "zenutil/zenutil.h"

#if ZEN_WITH_TESTS

#	include <zenutil/cache/cacherequests.h>
#	include <zenutil/cache/rpcrecording.h>

namespace zen {

void
zenutil_forcelinktests()
{
	cachepolicy_forcelink();
	cache::rpcrecord_forcelink();
	cacherequests_forcelink();
}

}  // namespace zen

#endif