aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/tests
diff options
context:
space:
mode:
authorAdam Jackson <[email protected]>2019-09-16 20:44:12 -0400
committerAdam Jackson <[email protected]>2019-09-17 14:53:57 -0400
commit6ec1259423fdbf491813f8b5db9af2fe022e8a86 (patch)
treefed5501001e5395d95f2a37ac365f9cbac8c8589 /src/gallium/tests
parentdd1dba80b9ee74ec8b90761285a8262e374bf8ef (diff)
ci: Run tests on i386 cross builds
Yes, some tests fail, but we can turn those into XFAILs at meson time. Better to keep the things that work working than not cover them at all. Unfortunately XPASS results will not cause the build to fail until we update CI to meson 0.51 or newer. Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/gallium/tests')
-rw-r--r--src/gallium/tests/unit/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/tests/unit/meson.build b/src/gallium/tests/unit/meson.build
index afde9840c37..976218f22b7 100644
--- a/src/gallium/tests/unit/meson.build
+++ b/src/gallium/tests/unit/meson.build
@@ -31,6 +31,8 @@ foreach t : ['pipe_barrier_test', 'u_cache_test', 'u_half_test',
)
# u_cache_test is slow, and translate_test fails.
if not ['u_cache_test', 'translate_test'].contains(t)
- test(t, exe, suite: 'gallium')
+ test(t, exe, suite: 'gallium',
+ should_fail : meson.get_cross_property('xfail', '').contains(t),
+ )
endif
endforeach