diff options
author | Eric Anholt <[email protected]> | 2019-01-24 09:36:56 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2019-01-25 13:06:45 -0800 |
commit | 54abd2e0844edf005510cb50b001cde8cf0366b7 (patch) | |
tree | e323e94624bc662373e2c966a9aecbec4b4ec5bd /src/gallium/tests/meson.build | |
parent | 3b6aaab7e9f211197b79368dabcec0fb1c92b24c (diff) |
gallium: Enable unit tests as actual meson unit tests.
These tests don't need swrast, so we can always enable them when
build_tests is set. Most of them run to successful completion quickly
(.9s on my SKL).
Reviewed-by: <Roland Scheidegger [email protected]>
Diffstat (limited to 'src/gallium/tests/meson.build')
-rw-r--r-- | src/gallium/tests/meson.build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/tests/meson.build b/src/gallium/tests/meson.build index 0ee04350c87..080bd8485b0 100644 --- a/src/gallium/tests/meson.build +++ b/src/gallium/tests/meson.build @@ -19,7 +19,5 @@ # SOFTWARE. subdir('trivial') -if with_gallium_softpipe - subdir('unit') -endif +subdir('unit') subdir('graw') |