summaryrefslogtreecommitdiff
path: root/src/mapi/es1api
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/mapi/es1api
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/mapi/es1api')
-rw-r--r--src/mapi/es1api/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mapi/es1api/meson.build b/src/mapi/es1api/meson.build
index d8a77a41df2..53e894f091c 100644
--- a/src/mapi/es1api/meson.build
+++ b/src/mapi/es1api/meson.build
@@ -56,6 +56,7 @@ if with_tests
'es1-ABI-check',
find_program('ABI-check'),
env : env_test,
- args : libglesv1_cm
+ args : libglesv1_cm,
+ suite : ['mapi'],
)
endif