aboutsummaryrefslogtreecommitdiff
path: root/src/zenstore/zenstore.cpp
blob: 038c6bdc7f9d0ff5c4ae81b5ed2cfdd40cf11fae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright Epic Games, Inc. All Rights Reserved.

#include "zenstore/zenstore.h"

#if ZEN_WITH_TESTS

#	include <zenstore/blockstore.h>
#	include <zenstore/cache/structuredcachestore.h>
#	include <zenstore/gc.h>
#	include <zenstore/hashkeyset.h>

#	include "cas.h"
#	include "compactcas.h"
#	include "filecas.h"

namespace zen {

void
zenstore_forcelinktests()
{
	CAS_forcelink();
	filecas_forcelink();
	blockstore_forcelink();
	compactcas_forcelink();
	gc_forcelink();
	hashkeyset_forcelink();
	structured_cachestore_forcelink();
}

}  // namespace zen

#endif