mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 02:20:15 +01:00
With follow up commits we can clear it up and wire to make check v2: - Use xf86drmRandom.h for common struct.(Jan) - Add test to .gitignore. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>
70 lines
825 B
Makefile
70 lines
825 B
Makefile
SUBDIRS = modeprint proptest modetest
|
|
|
|
if HAVE_LIBKMS
|
|
SUBDIRS += kmstest
|
|
endif
|
|
|
|
if HAVE_RADEON
|
|
SUBDIRS += radeon
|
|
endif
|
|
|
|
if HAVE_EXYNOS
|
|
SUBDIRS += exynos
|
|
endif
|
|
|
|
if HAVE_TEGRA
|
|
SUBDIRS += tegra
|
|
endif
|
|
|
|
if HAVE_LIBUDEV
|
|
SUBDIRS += vbltest
|
|
endif
|
|
|
|
AM_CFLAGS = \
|
|
$(WARN_CFLAGS)\
|
|
-I $(top_srcdir)/include/drm \
|
|
-I $(top_srcdir)
|
|
|
|
LDADD = $(top_builddir)/libdrm.la
|
|
|
|
check_PROGRAMS = \
|
|
dristat \
|
|
drmstat \
|
|
random
|
|
|
|
if HAVE_NOUVEAU
|
|
SUBDIRS += nouveau
|
|
endif
|
|
|
|
TESTS = \
|
|
drmsl \
|
|
hash
|
|
|
|
if HAVE_LIBUDEV
|
|
|
|
check_LTLIBRARIES = libdrmtest.la
|
|
|
|
libdrmtest_la_SOURCES = \
|
|
drmtest.c \
|
|
drmtest.h
|
|
|
|
LDADD += \
|
|
libdrmtest.la \
|
|
$(LIBUDEV_LIBS)
|
|
|
|
|
|
XFAIL_TESTS = \
|
|
auth \
|
|
lock
|
|
|
|
TESTS += \
|
|
openclose \
|
|
getversion \
|
|
getclient \
|
|
getstats \
|
|
setversion \
|
|
updatedraw \
|
|
name_from_fd
|
|
endif
|
|
|
|
check_PROGRAMS += $(TESTS)
|