diff options
author | Matt Turner <[email protected]> | 2018-03-16 10:52:55 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2018-03-16 13:20:21 -0700 |
commit | f3833f1ca79960a944760914b8a208c4e6bc12e7 (patch) | |
tree | cc655297fd0af3da25c4d7c57426b723da083d62 /src/intel/Makefile.compiler.am | |
parent | 54db78b196d883a878301651af3313fd50c39fd5 (diff) |
intel/compiler: Use gen_get_device_info() in test_eu_validate
Previously the unit test filled out a minimal devinfo struct. A previous
patch caused the test to begin assert failing because the devinfo was
not complete. Avoid this by using the real mechanism to create devinfo.
Note that we have to drop icl from the table, since we now rely on the
name -> PCI ID translation done by gen_device_name_to_pci_device_id(),
and ICL's PCI IDs are not upstream yet.
Fixes: f89e735719a6 ("intel/compiler: Check for unsupported register sizes.")
Reviewed-by: Rafael Antognolli <[email protected]>
Diffstat (limited to 'src/intel/Makefile.compiler.am')
-rw-r--r-- | src/intel/Makefile.compiler.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/Makefile.compiler.am b/src/intel/Makefile.compiler.am index 45e7a6ccce8..af30a58a1d6 100644 --- a/src/intel/Makefile.compiler.am +++ b/src/intel/Makefile.compiler.am @@ -48,6 +48,7 @@ TEST_LIBS = \ $(top_builddir)/src/gtest/libgtest.la \ compiler/libintel_compiler.la \ common/libintel_common.la \ + dev/libintel_dev.la \ $(top_builddir)/src/compiler/nir/libnir.la \ $(top_builddir)/src/util/libmesautil.la \ $(top_builddir)/src/intel/isl/libisl.la \ |