aboutsummaryrefslogtreecommitdiffstats
blob: ea9026e91452fac44fd0df6f3132e3bf0c15d0d3 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
NULL:=#

AM_CPPFLAGS = \
	-I $(top_srcdir)/include/drm \
	-I $(top_srcdir)

LDADD = $(top_builddir)/libdrm.la

check_PROGRAMS = \
	dristat \
	drmstat

dristat_LDADD = $(CLOCK_LIB)

SUBDIRS = modeprint

if HAVE_LIBKMS
SUBDIRS += kmstest modetest
endif

if HAVE_RADEON
SUBDIRS += radeon
endif

if HAVE_LIBUDEV

check_LTLIBRARIES = libdrmtest.la

libdrmtest_la_SOURCES = \
	drmtest.c \
	drmtest.h

libdrmtest_la_LIBADD = \
	$(top_builddir)/libdrm.la \
	$(LIBUDEV_LIBS)

LDADD += libdrmtest.la

XFAIL_TESTS =					\
	auth					\
	lock

TESTS =						\
	openclose				\
	getversion				\
	getclient				\
	getstats				\
	setversion				\
	updatedraw				\
	name_from_fd				\
	$(NULL)

SUBDIRS += vbltest $(NULL)

if HAVE_INTEL
TESTS +=					\
	gem_basic				\
	gem_flink				\
	gem_readwrite				\
	gem_mmap				\
	$(NULL)
endif

check_PROGRAMS += $(TESTS)

endif