aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Raghavan <arun@arunraghavan.net>2019-06-08 12:47:53 +0200
committerArun Raghavan <arun@arunraghavan.net>2019-06-08 12:47:53 +0200
commit6a60f91054c16e8115b3c05247e98b24806f09e0 (patch)
treedd4dcdc25bcc63c868cba35fae15bc9c24c10dfa
parent2ee919e9809440c488fbedf6cfadace9c675afd9 (diff)
downloadpulseaudio-6a60f91054c16e8115b3c05247e98b24806f09e0.tar.gz
meson: Skip norun tests
These weren't meant to be run, so we skip then while generating meson tests.
-rw-r--r--src/tests/meson.build10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/tests/meson.build b/src/tests/meson.build
index b18d32ef..8a9a533d 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