mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 18:50:10 +01:00
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>
This commit is contained in:
parent
22462ba242
commit
68cfc65ccb
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue