Bug 1909234 - Vendor libwebrtc from cfab6409ae

Upstream commit: https://webrtc.googlesource.com/src/+/cfab6409ae8de8c9075708593c4c187fca94ea8f
    Skip tests failing with the new version of UBSan.

    Bug: webrtc:345674542
    Change-Id: I24171a6452e66e48683f3edfdde35322e0fe4b8a
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/353940
    Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org>
    Auto-Submit: Mirko Bonadei <mbonadei@webrtc.org>
    Commit-Queue: Henrik Lundin <henrik.lundin@webrtc.org>
    Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
    Cr-Commit-Position: refs/heads/main@{#42448}
This commit is contained in:
Byron Campen 2024-07-29 12:43:59 -05:00
parent 5b6a4d6b1d
commit f3506a87c8
4 changed files with 15 additions and 0 deletions

View File

@ -31116,3 +31116,6 @@ c74412b304
# MOZ_LIBWEBRTC_SRC=/home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc MOZ_LIBWEBRTC_BRANCH=mozpatches bash dom/media/webrtc/third_party_build/fast-forward-libwebrtc.sh
# base of lastest vendoring
9f6bb625e6
# MOZ_LIBWEBRTC_SRC=/home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc MOZ_LIBWEBRTC_BRANCH=mozpatches bash dom/media/webrtc/third_party_build/fast-forward-libwebrtc.sh
# base of lastest vendoring
cfab6409ae

View File

@ -20768,3 +20768,5 @@ libwebrtc updated from /home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebr
libwebrtc updated from /home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2024-07-29T17:39:58.211434.
# ./mach python dom/media/webrtc/third_party_build/vendor-libwebrtc.py --from-local /home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc --commit mozpatches libwebrtc
libwebrtc updated from /home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2024-07-29T17:42:43.772358.
# ./mach python dom/media/webrtc/third_party_build/vendor-libwebrtc.py --from-local /home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc --commit mozpatches libwebrtc
libwebrtc updated from /home/bcampen/checkouts/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2024-07-29T17:43:49.167481.

View File

@ -54,7 +54,12 @@ TEST_F(VadTest, set_mode_core) {
free(self);
}
// TODO(bugs.webrtc.org/345674542): Fix/enable.
#if defined(__has_feature) && __has_feature(undefined_behavior_sanitizer)
TEST_F(VadTest, DISABLED_CalcVad) {
#else
TEST_F(VadTest, CalcVad) {
#endif
VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT)));
int16_t speech[kMaxFrameLength];

View File

@ -54,7 +54,12 @@ bool VadTest::ValidRatesAndFrameLengths(int rate, size_t frame_length) {
namespace webrtc {
namespace test {
// TODO(bugs.webrtc.org/345674542): Fix/enable.
#if defined(__has_feature) && __has_feature(undefined_behavior_sanitizer)
TEST_F(VadTest, DISABLED_ApiTest) {
#else
TEST_F(VadTest, ApiTest) {
#endif
// This API test runs through the APIs for all possible valid and invalid
// combinations.