summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-12-14 20:22:29 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-12-14 20:25:20 +0000
commit947be45ffb8471942ba9f3932700cc6ecb98c728 (patch)
treea739b8b057d682a3fada8ace3e2ecdb8e7a7875f /tests
parent3735b73d54f05facd36e49f3b5ee7c6fa82de9cf (diff)
downloadlibnice-947be45ffb8471942ba9f3932700cc6ecb98c728.tar.gz
meson: tests: make fullmode-with-stun non-parallel and disable fuzzing test
test-fullmode-with-stun needs to run in non-parallel mode to work. test-pseudotcp-fuzzy sometimes just times out, which needs investigating. meson test -C builddir --repeat=20
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build
index f09e1d1..eae93c8 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,6 +1,6 @@
nice_tests = [
'test-pseudotcp',
- 'test-pseudotcp-fuzzy',
+ # 'test-pseudotcp-fuzzy', FIXME: this test is not reliable, times out sometimes
'test-bsd',
'test',
'test-address',
@@ -82,7 +82,8 @@ if find_program('sh', required : false).found()
test('test-fullmode-with-stun', files('check-test-fullmode-with-stun.sh'),
args: [stund_exe, test_fullmode],
- env: tenv)
+ env: tenv,
+ is_parallel: false)
endif
debugenv = environment()