Disabled TestPacketBuffer.SeqNumWrapOneFrame test due to clang update
Until further investigation. Clang update: chromium:880827 Bug: chromium:887464 Change-Id: Id1fe85a013920e6ae8c6ac69efb0a0502b9dd6fe Reviewed-on: https://webrtc-review.googlesource.com/101561 Commit-Queue: Artem Titarenko <artit@webrtc.org> Reviewed-by: Artem Titarenko <artit@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24795}
This commit is contained in:
committed by
Commit Bot
parent
74e3742635
commit
03c592a1e9
@ -112,7 +112,14 @@ TEST_F(TestPacketBuffer, InsertDuplicatePacket) {
|
||||
EXPECT_TRUE(Insert(seq_num, kKeyFrame, kFirst, kLast));
|
||||
}
|
||||
|
||||
TEST_F(TestPacketBuffer, SeqNumWrapOneFrame) {
|
||||
#if defined(WEBRTC_ANDROID)
|
||||
// Fails on android after clang update
|
||||
// TODO(crbug.com/887464): Reenable this
|
||||
#define MAYBE_SeqNumWrapOneFrame DISABLED_SeqNumWrapOneFrame
|
||||
#else
|
||||
#define MAYBE_SeqNumWrapOneFrame SeqNumWrapOneFrame
|
||||
#endif
|
||||
TEST_F(TestPacketBuffer, MAYBE_SeqNumWrapOneFrame) {
|
||||
EXPECT_TRUE(Insert(0xFFFF, kKeyFrame, kFirst, kNotLast));
|
||||
EXPECT_TRUE(Insert(0x0, kKeyFrame, kNotFirst, kLast));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user