OLD | NEW |
| (Empty) |
1 ############################################################################# | |
2 # UBSan blacklist. | |
3 # Please think twice before you add or remove these rules. | |
4 | |
5 # This is a stripped down copy of Chromium's blacklist.txt, to enable | |
6 # adding WebRTC-specific blacklist entries. | |
7 | |
8 ############################################################################# | |
9 # YASM does some funny things that UBsan doesn't like. | |
10 # https://crbug.com/489901 | |
11 src:*/third_party/yasm/* | |
12 | |
13 # OpenH264 triggers some errors that are out of our control. | |
14 src:*/third_party/ffmpeg/libavcodec/* | |
15 src:*/third_party/openh264/* | |
16 | |
17 ############################################################################# | |
18 # Ignore system libraries. | |
19 src:*/usr/* | |
20 | |
21 ############################################################################# | |
22 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5513 | |
23 fun:*FilterBanksTest*CalculateResidualEnergyTester* | |
24 | |
25 ############################################################################# | |
26 # Ignore errors in common_audio. | |
27 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5486 | |
28 src:*/webrtc/common_audio/signal_processing/signal_processing_unittest.cc | |
29 src:*/webrtc/common_audio/signal_processing/resample_by_2_internal.c | |
30 fun:*WebRtcSpl_AddSatW32* | |
31 fun:*WebRtcSpl_SubSatW32* | |
32 fun:*WebRtcSpl_DivW32HiLow* | |
33 fun:*GmmProbability* | |
OLD | NEW |