mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-30 03:06:09 +00:00
Add four new tests for error the error handling cases: - gem_bad_address - store to a bad address, should generate a protection or page table error - gem_bad_batch - try to execute a bad batch, should generate a protection, invalid instruction or page table error - gem_bad_blit - blit to an invalid location, should generated a protection or page table error - gem_hang - hang the GPU on an event that will never happen, test hang detection & recovery code
25 lines
464 B
Makefile
25 lines
464 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 \
|
|
gem_bad_address \
|
|
gem_bad_blit \
|
|
gem_bad_batch \
|
|
gem_hang
|
|
|
|
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)
|