1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: Chris Talbot <chris@talbothome.com>
Date: Wed, 14 Feb 2024 14:15:39 -0700
Subject: [PATCH] test: disable sip test
The sip test is flaky in Debian and Ubuntu
Forwarded: https://gitlab.gnome.org/GNOME/calls/-/issues/623
---
plugins/provider/tests/meson.build | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/provider/tests/meson.build b/plugins/provider/tests/meson.build
index 49f5cd1..25ef99e 100644
--- a/plugins/provider/tests/meson.build
+++ b/plugins/provider/tests/meson.build
@@ -95,7 +95,7 @@ t = executable('media', test_sources,
]
)
test('media', t, env: test_env)
-
+'''
test_sources = [ 'test-sip.c' ]
test_sources += sip_sources
t = executable('sip', test_sources,
@@ -110,7 +110,7 @@ t = executable('sip', test_sources,
]
)
test('sip', t, env: test_env)
-
+'''
test_sources = [ 'test-srtp.c' ]
test_sources += sip_sources
t = executable('srtp', test_sources,
|