Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: webrtc/modules/video_coding/sequence_number_util_unittest.cc

Issue 2985083002: Disable SeqNumUnwrapper death tests to avoid breaking downstream builds. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/sequence_number_util_unittest.cc
diff --git a/webrtc/modules/video_coding/sequence_number_util_unittest.cc b/webrtc/modules/video_coding/sequence_number_util_unittest.cc
index 12cc911e414ce96217d731c371aa7fb2da413bba..6988b3e8274028a9903b606c23667835219089c3 100644
--- a/webrtc/modules/video_coding/sequence_number_util_unittest.cc
+++ b/webrtc/modules/video_coding/sequence_number_util_unittest.cc
@@ -209,7 +209,9 @@ TEST_F(TestSeqNumUtil, SeqNumComparatorWithDivisor) {
}
}
-TEST(SeqNumUnwrapper, NoBackWardWrap) {
+// TODO(philipel): Enable when downstream project can hande these death tests.
+
+TEST(SeqNumUnwrapper, DISABLED_NoBackWardWrap) {
SeqNumUnwrapper<uint8_t> unwrapper;
EXPECT_EQ(0U, unwrapper.Unwrap(0));
@@ -218,7 +220,7 @@ TEST(SeqNumUnwrapper, NoBackWardWrap) {
ASSERT_DEATH_IF_SUPPORTED(unwrapper.Unwrap(255), "");
}
-TEST(SeqNumUnwrapper, NoForwardWrap) {
+TEST(SeqNumUnwrapper, DISABLED_NoForwardWrap) {
SeqNumUnwrapper<uint32_t> unwrapper(std::numeric_limits<uint64_t>::max());
EXPECT_EQ(std::numeric_limits<uint64_t>::max(), unwrapper.Unwrap(0));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698