summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2019-11-06 10:14:45 -0800
committerMarge Bot <eric+marge@anholt.net>2020-01-22 00:19:21 +0000
commit68cfc65ccbca748f0dfdc85876b9b5c02e598c11 (patch)
tree11940a3c3bbb17d52cf7bf8d62efb77d8271f581
parent22462ba242d4b1ca63fb867668d5ef19ef1dff6e (diff)
downloadmesa-68cfc65ccbca748f0dfdc85876b9b5c02e598c11.tar.gz
intel/compiler: Test compaction on Gen <= 12
With the previous commits we can now enable the unit test on Gen <= 12. Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2635> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2635>
-rw-r--r--src/intel/compiler/test_eu_compact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/test_eu_compact.cpp b/src/intel/compiler/test_eu_compact.cpp
index 4cb33aefba2..bf87ff844b4 100644
--- a/src/intel/compiler/test_eu_compact.cpp
+++ b/src/intel/compiler/test_eu_compact.cpp
@@ -334,7 +334,7 @@ main(int argc, char **argv)
struct gen_device_info *devinfo = (struct gen_device_info *)calloc(1, sizeof(*devinfo));
bool fail = false;
- for (devinfo->gen = 5; devinfo->gen <= 9; devinfo->gen++) {
+ for (devinfo->gen = 5; devinfo->gen <= 12; devinfo->gen++) {
fail |= run_tests(devinfo);
}