mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-18 13:26:30 +00:00
tests/gem_lut_handle: Limit testing LUT interface to recent kernels
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
d5517a1301
commit
fb7bc2e8d1
@ -143,7 +143,8 @@ int main(int argc, char **argv)
|
||||
gem_exec[n].handle = gem_create(fd, 4096);
|
||||
gem_write(fd, gem_exec[n].handle, 0, batch, sizeof(batch));
|
||||
|
||||
do_or_die(exec(fd, MAX_NUM_EXEC, 0, USE_LUT));
|
||||
if (exec(fd, 1, 0, USE_LUT))
|
||||
return 77;
|
||||
|
||||
for (p = pass; p->name != NULL; p++) {
|
||||
for (n = 1; n <= MAX_NUM_EXEC; n *= 2) {
|
||||
|
@ -185,9 +185,12 @@ int main(int argc, char **argv)
|
||||
gem_write(fd, handle, 0, batch, sizeof(batch));
|
||||
|
||||
do_or_die(exec(fd, handle, NORMAL));
|
||||
do_or_die(exec(fd, handle, USE_LUT));
|
||||
|
||||
fail(exec(fd, handle, BROKEN));
|
||||
|
||||
if (exec(fd, handle, USE_LUT))
|
||||
return 77;
|
||||
|
||||
do_or_die(exec(fd, handle, USE_LUT));
|
||||
fail(exec(fd, handle, USE_LUT | BROKEN));
|
||||
|
||||
for (i = 2; i <= 65536; i *= 2) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user