diff options
author | Dylan Baker <[email protected]> | 2018-11-19 13:44:15 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-11-20 09:09:22 -0800 |
commit | a999798daad7181110922a7e756eb1d8dfe55c4e (patch) | |
tree | dd7d629beec14d57d406a8852717b32726d6888d /src/gbm | |
parent | b787dcf57b7298868ce9b6885a827d57a6127ba1 (diff) |
meson: Add tests to suites
Meson test has a concepts of suites, which allow tests to be grouped
together. This allows for a subtest of tests to be run only (say only
the tests for nir). A test can be added to more than one suite, but for
the most part I've only added a test to a single suite, though I've
added a compiler group that includes nir, glsl, and glcpp tests.
To use this you'll need to invoke meson test directly, instead of ninja
test (which always runs all targets). it can be invoked as:
`meson test -C builddir --suite $suitename` (meson test has addition
options that are pretty useful).
Tested-By: Gert Wollny <[email protected]>
Acked-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gbm')
-rw-r--r-- | src/gbm/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gbm/meson.build b/src/gbm/meson.build index 007f50a9ae3..b2ad6673592 100644 --- a/src/gbm/meson.build +++ b/src/gbm/meson.build @@ -71,6 +71,7 @@ if with_tests 'gbm-symbols-check', find_program('gbm-symbols-check'), env : env_test, - args : libgbm + args : libgbm, + suite : ['gbm'], ) endif |