From 1e4c11e152b7e0634facd47d1e1aaf65994ff4dd Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 16 Jul 2021 08:43:09 -0400 Subject: [PATCH] TT#14008 disable some tests These tests are timing sensitive which makes them unstable under certain conditions. Remove them from the automated build system. closes #1309 Change-Id: I432445bce337bbf4d4b80417e532a910b516b8ee --- t/Makefile | 2 +- t/auto-daemon-tests.pl | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/t/Makefile b/t/Makefile index bf392cf12..74cd731ca 100644 --- a/t/Makefile +++ b/t/Makefile @@ -111,7 +111,7 @@ daemon-tests: tests-preload.so $(MAKE) -C ../daemon $(MAKE) all-daemon-tests -all-daemon-tests: daemon-tests-main daemon-tests-jb daemon-tests-dtx daemon-tests-dtx-cn +all-daemon-tests: daemon-tests-main daemon-tests-jb daemon-tests-main: rm -rf fake-$@-sockets diff --git a/t/auto-daemon-tests.pl b/t/auto-daemon-tests.pl index 2de39a290..49f46a63e 100755 --- a/t/auto-daemon-tests.pl +++ b/t/auto-daemon-tests.pl @@ -5946,6 +5946,8 @@ SDP +if ($amr_tests) { # not really AMR, but make it also conditional as it's timing sensitive + # DTLS early start with ICE (GH 1035 TT 84804) ($sock_a, $sock_b, $sock_c, $sock_d) = new_call([qw(198.51.100.4 2000)], [qw(198.51.100.4 2001)], [qw(198.51.100.8 3000)], [qw(198.51.100.8 3001)]); @@ -6018,6 +6020,7 @@ snd($sock_d, $ret4[0], stun_succ($ret4[0], $ret4[1])); rcv($sock_c, -1, qr/^\x16\xfe\xff\x00\x00\x00\x00\x00\x00\x00/); rcv($sock_d, -1, qr/^\x16\xfe\xff\x00\x00\x00\x00\x00\x00\x00/); +}