diff options
author | Arun Raghavan <arun@arunraghavan.net> | 2019-06-08 12:47:53 +0200 |
---|---|---|
committer | Arun Raghavan <arun@arunraghavan.net> | 2019-06-08 12:47:53 +0200 |
commit | 6a60f91054c16e8115b3c05247e98b24806f09e0 (patch) | |
tree | dd4dcdc25bcc63c868cba35fae15bc9c24c10dfa /src | |
parent | 2ee919e9809440c488fbedf6cfadace9c675afd9 (diff) | |
download | pulseaudio-6a60f91054c16e8115b3c05247e98b24806f09e0.tar.gz |
meson: Skip norun tests
These weren't meant to be run, so we skip then while generating meson
tests.
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/meson.build | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/tests/meson.build b/src/tests/meson.build index b18d32ef8..8a9a533de 100644 --- a/src/tests/meson.build +++ b/src/tests/meson.build @@ -190,10 +190,12 @@ foreach t : default_tests + norun_tests link_with : extra_libs, ) - test(name, exe, - env : test_env, - timeout : 120, - ) + if default_tests.contains(t) + test(name, exe, + env : test_env, + timeout : 120, + ) + endif endforeach # These tests need a running pulseaudio daemon |