summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-12-08 17:45:03 -0800
committerDylan Baker <dylan@pnwbakers.com>2018-04-18 09:03:57 -0700
commitad9c2f20181fdaa9f2b1e7222a861ebc876050b3 (patch)
tree265011d5fcb080f39423dc2a08ba0594b8d506c7
parent3b52d29227397dfe28945fde0cc44cb8ec11d83a (diff)
meson: run glsl compiler warnings test
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net>
-rw-r--r--src/compiler/glsl/tests/meson.build10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/compiler/glsl/tests/meson.build b/src/compiler/glsl/tests/meson.build
index 146647a850c..040b2576721 100644
--- a/src/compiler/glsl/tests/meson.build
+++ b/src/compiler/glsl/tests/meson.build
@@ -83,4 +83,12 @@ test(
)
)
-# TODO: figure out how to get the shell based tests to work?
+test(
+ 'glsl compiler warnings', find_program('warnings_test.py'),
+ args : [
+ '--glsl-compiler', glsl_compiler,
+ '--test-directory', join_paths(
+ meson.source_root(), 'src', 'compiler', 'glsl', 'tests', 'warnings'
+ ),
+ ],
+)