summaryrefslogtreecommitdiff
path: root/src/intel/compiler/test_eu_compact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/intel/compiler/test_eu_compact.cpp')
-rw-r--r--src/intel/compiler/test_eu_compact.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/intel/compiler/test_eu_compact.cpp b/src/intel/compiler/test_eu_compact.cpp
index 74f7aaecf3b..a371a32862c 100644
--- a/src/intel/compiler/test_eu_compact.cpp
+++ b/src/intel/compiler/test_eu_compact.cpp
@@ -328,12 +328,15 @@ run_tests(const struct gen_device_info *devinfo)
}
int
-main(int argc, char **argv)
+main(UNUSED int argc, UNUSED char **argv)
{
struct gen_device_info *devinfo = (struct gen_device_info *)calloc(1, sizeof(*devinfo));
bool fail = false;
for (devinfo->gen = 5; devinfo->gen <= 12; devinfo->gen++) {
+ if (devinfo->gen == 10)
+ continue;
+
fail |= run_tests(devinfo);
}