summaryrefslogtreecommitdiff
path: root/src/gbm
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-11-19 13:44:15 -0800
committerDylan Baker <dylan@pnwbakers.com>2018-11-20 09:09:22 -0800
commita999798daad7181110922a7e756eb1d8dfe55c4e (patch)
treedd7d629beec14d57d406a8852717b32726d6888d /src/gbm
parentb787dcf57b7298868ce9b6885a827d57a6127ba1 (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 <gert.wollny@collabora.com> Acked-by: Eric Engestrom <eric.engestrom@intel.com>
Diffstat (limited to 'src/gbm')
-rw-r--r--src/gbm/meson.build3
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