mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-17 00:10:34 +01:00
This adds some basic unit tests for the new amdgpu driver.
v2: use common util_math.h
v3: implement suggestions from Emil
replace malloc/memset with calloc
make header guards all caps
use posix_memalign rather than mem_align
replace malloc with calloc for pm4 allocations
make CU_SuiteInfo static
fix Makefile.am
fix fd numbering
use drmGetVersion/drmFreeVersion rather than open coding it
close fd, clean up CU registry on error
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
72 lines
851 B
Makefile
72 lines
851 B
Makefile
SUBDIRS = modeprint proptest modetest vbltest
|
|
|
|
if HAVE_LIBKMS
|
|
SUBDIRS += kmstest
|
|
endif
|
|
|
|
if HAVE_RADEON
|
|
SUBDIRS += radeon
|
|
endif
|
|
|
|
if HAVE_AMDGPU
|
|
if HAVE_CUNIT
|
|
SUBDIRS += amdgpu
|
|
endif
|
|
endif
|
|
|
|
if HAVE_EXYNOS
|
|
SUBDIRS += exynos
|
|
endif
|
|
|
|
if HAVE_TEGRA
|
|
SUBDIRS += tegra
|
|
endif
|
|
|
|
AM_CFLAGS = \
|
|
$(WARN_CFLAGS)\
|
|
-I $(top_srcdir)/include/drm \
|
|
-I $(top_srcdir)
|
|
|
|
LDADD = $(top_builddir)/libdrm.la
|
|
|
|
check_PROGRAMS = \
|
|
dristat \
|
|
drmstat
|
|
|
|
if HAVE_NOUVEAU
|
|
SUBDIRS += nouveau
|
|
endif
|
|
|
|
TESTS = \
|
|
drmsl \
|
|
hash \
|
|
random
|
|
|
|
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)
|