mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 00:46:17 +00:00
It's not hitting a valid assertion that it tries to write an instruction without a defined execution size (because the "default" exec_size never end up being set). Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
94 lines
1.4 KiB
Makefile
94 lines
1.4 KiB
Makefile
check_SCRIPTS = run-test.sh
|
|
|
|
TESTS_ENVIRONMENT = top_builddir=${top_builddir}
|
|
TESTS = \
|
|
mov \
|
|
frc \
|
|
rndd \
|
|
rndu \
|
|
rnde \
|
|
rnde-intsrc \
|
|
rndz \
|
|
lzd \
|
|
not \
|
|
immediate
|
|
|
|
# Tests that are expected to fail because they contain some inccorect code.
|
|
XFAIL_TESTS =
|
|
|
|
# Those tests were already failing when the assembler was imported from
|
|
# the intel-gen4asm git repository:
|
|
# http://cgit.freedesktop.org/xorg/app/intel-gen4asm/
|
|
# We disable them "for now" as a workaround to be able to release i-g-t
|
|
disabled_tests = \
|
|
declare \
|
|
jmpi \
|
|
if \
|
|
iff \
|
|
while \
|
|
else \
|
|
break \
|
|
cont \
|
|
halt \
|
|
wait \
|
|
endif
|
|
|
|
disabled_xfail_tests = \
|
|
rnde-intsrc
|
|
|
|
TESTDATA = \
|
|
mov.expected \
|
|
mov.g4a \
|
|
frc.expected \
|
|
frc.g4a \
|
|
rndd.expected \
|
|
rndd.g4a \
|
|
rndu.expected \
|
|
rndu.g4a \
|
|
rnde.expected \
|
|
rnde.g4a \
|
|
rnde-intsrc.expected \
|
|
rnde-intsrc.g4a \
|
|
rndz.expected \
|
|
rndz.g4a \
|
|
lzd.expected \
|
|
lzd.g4a \
|
|
not.expected \
|
|
not.g4a \
|
|
jmpi.expected \
|
|
jmpi.g4a \
|
|
if.expected \
|
|
if.g4a \
|
|
iff.expected \
|
|
iff.g4a \
|
|
while.expected \
|
|
while.g4a \
|
|
else.expected \
|
|
else.g4a \
|
|
break.expected \
|
|
break.g4a \
|
|
cont.expected \
|
|
cont.g4a \
|
|
halt.expected \
|
|
halt.g4a \
|
|
wait.expected \
|
|
wait.g4a \
|
|
endif.expected \
|
|
endif.g4a \
|
|
declare.expected \
|
|
declare.g4a \
|
|
immediate.g4a \
|
|
immediate.expected
|
|
|
|
EXTRA_DIST = \
|
|
${TESTDATA} \
|
|
run-test.sh
|
|
|
|
$(TESTS): run-test.sh
|
|
sed "s|TEST|$@|g" ${srcdir}/run-test.sh > $@
|
|
chmod +x $@
|
|
|
|
CLEANFILES = \
|
|
*.out \
|
|
${TESTS}
|