mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-07-01 11:46:27 +00:00
The large object test simply tries to allocate a 128M object, pin it, then pwrite the whole thing. This should make obvious any leaks on close or page pointer allocation failures.
21 lines
400 B
Makefile
21 lines
400 B
Makefile
TESTS = getversion \
|
|
getclient \
|
|
getstats \
|
|
gem_basic \
|
|
gem_flink \
|
|
gem_readwrite \
|
|
gem_ringfill \
|
|
gem_mmap \
|
|
gem_pread_after_blit \
|
|
gem_tiled_pread \
|
|
gem_tiled_blits \
|
|
gem_largeobject
|
|
|
|
EXTRA_PROGRAMS = $(TESTS)
|
|
CLEANFILES = $(EXTRA_PROGRAMS)
|
|
|
|
AM_CFLAGS = $(DRM_CFLAGS) $(WARN_CFLAGS) \
|
|
-I$(srcdir)/.. \
|
|
-I$(srcdir)/../lib
|
|
LDADD = ../lib/libintel_tools.la $(PCIACCESS_LIBS) $(DRM_LIBS)
|