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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_format_vp8_unittest.cc

Issue 2358993004: Enable the -Wundef warning for clang (Closed)
Patch Set: rebase Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <memory> 11 #include <memory>
12 12
13 #include "testing/gmock/include/gmock/gmock.h" 13 #include "webrtc/test/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "webrtc/test/gtest.h"
15 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h" 15 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h"
16 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h" 16 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h"
17 #include "webrtc/typedefs.h" 17 #include "webrtc/typedefs.h"
18 18
19 #define CHECK_ARRAY_SIZE(expected_size, array) \ 19 #define CHECK_ARRAY_SIZE(expected_size, array) \
20 static_assert(expected_size == sizeof(array) / sizeof(array[0]), \ 20 static_assert(expected_size == sizeof(array) / sizeof(array[0]), \
21 "check array size"); 21 "check array size");
22 22
23 namespace webrtc { 23 namespace webrtc {
24 namespace { 24 namespace {
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 input_header.layerSync); 595 input_header.layerSync);
596 } 596 }
597 597
598 TEST_F(RtpDepacketizerVp8Test, TestEmptyPayload) { 598 TEST_F(RtpDepacketizerVp8Test, TestEmptyPayload) {
599 // Using a wild pointer to crash on accesses from inside the depacketizer. 599 // Using a wild pointer to crash on accesses from inside the depacketizer.
600 uint8_t* garbage_ptr = reinterpret_cast<uint8_t*>(0x4711); 600 uint8_t* garbage_ptr = reinterpret_cast<uint8_t*>(0x4711);
601 RtpDepacketizer::ParsedPayload payload; 601 RtpDepacketizer::ParsedPayload payload;
602 EXPECT_FALSE(depacketizer_->Parse(&payload, garbage_ptr, 0)); 602 EXPECT_FALSE(depacketizer_->Parse(&payload, garbage_ptr, 0));
603 } 603 }
604 } // namespace webrtc 604 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698