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

Side by Side Diff: webrtc/test/testsupport/packet_reader_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 "webrtc/test/testsupport/packet_reader.h" 11 #include "webrtc/test/testsupport/packet_reader.h"
12 12
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "webrtc/test/gtest.h"
14 #include "webrtc/test/testsupport/unittest_utils.h" 14 #include "webrtc/test/testsupport/unittest_utils.h"
15 15
16 namespace webrtc { 16 namespace webrtc {
17 namespace test { 17 namespace test {
18 18
19 class PacketReaderTest: public PacketRelatedTest { 19 class PacketReaderTest: public PacketRelatedTest {
20 protected: 20 protected:
21 PacketReaderTest() {} 21 PacketReaderTest() {}
22 virtual ~PacketReaderTest() {} 22 virtual ~PacketReaderTest() {}
23 void SetUp() { 23 void SetUp() {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 uint8_t data[kPacketSizeInBytes]; 116 uint8_t data[kPacketSizeInBytes];
117 uint8_t* data_pointer = data; 117 uint8_t* data_pointer = data;
118 reader_->InitializeReading(data, kDataLengthInBytes, kPacketSizeInBytes); 118 reader_->InitializeReading(data, kDataLengthInBytes, kPacketSizeInBytes);
119 EXPECT_EQ(kDataLengthInBytes, reader_->NextPacket(&data_pointer)); 119 EXPECT_EQ(kDataLengthInBytes, reader_->NextPacket(&data_pointer));
120 // Do it again to make sure nothing changes 120 // Do it again to make sure nothing changes
121 EXPECT_EQ(kDataLengthInBytes, reader_->NextPacket(&data_pointer)); 121 EXPECT_EQ(kDataLengthInBytes, reader_->NextPacket(&data_pointer));
122 } 122 }
123 123
124 } // namespace test 124 } // namespace test
125 } // namespace webrtc 125 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/test/testsupport/mock/mock_frame_writer.h ('k') | webrtc/test/testsupport/perf_test_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698