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

Side by Side Diff: webrtc/base/basictypes_unittest.cc

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: google::int32 Created 5 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 2012 The WebRTC Project Authors. All rights reserved. 2 * Copyright 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/base/basictypes.h" 11 #include "webrtc/base/basictypes.h"
12 12
13 #include "webrtc/base/gunit.h" 13 #include "webrtc/base/gunit.h"
14 14
15 namespace rtc { 15 namespace rtc {
16 16
17 static_assert(sizeof(int8) == 1, "Unexpected size"); 17 static_assert(sizeof(int8_t) == 1, "Unexpected size");
Henrik Grunell WebRTC 2015/09/22 10:35:54 Remove these asserts. Size of _t types are guarant
pbos-webrtc 2015/09/22 12:17:42 Done.
18 static_assert(sizeof(uint8) == 1, "Unexpected size"); 18 static_assert(sizeof(uint8_t) == 1, "Unexpected size");
19 static_assert(sizeof(int16) == 2, "Unexpected size"); 19 static_assert(sizeof(int16_t) == 2, "Unexpected size");
20 static_assert(sizeof(uint16) == 2, "Unexpected size"); 20 static_assert(sizeof(uint16_t) == 2, "Unexpected size");
21 static_assert(sizeof(int32) == 4, "Unexpected size"); 21 static_assert(sizeof(int32_t) == 4, "Unexpected size");
22 static_assert(sizeof(uint32) == 4, "Unexpected size"); 22 static_assert(sizeof(uint32_t) == 4, "Unexpected size");
23 static_assert(sizeof(int64) == 8, "Unexpected size"); 23 static_assert(sizeof(int64_t) == 8, "Unexpected size");
24 static_assert(sizeof(uint64) == 8, "Unexpected size"); 24 static_assert(sizeof(uint64_t) == 8, "Unexpected size");
25 25
26 TEST(BasicTypesTest, Endian) { 26 TEST(BasicTypesTest, Endian) {
27 uint16 v16 = 0x1234u; 27 uint16_t v16 = 0x1234u;
28 uint8 first_byte = *reinterpret_cast<uint8*>(&v16); 28 uint8_t first_byte = *reinterpret_cast<uint8_t*>(&v16);
29 #if defined(RTC_ARCH_CPU_LITTLE_ENDIAN) 29 #if defined(RTC_ARCH_CPU_LITTLE_ENDIAN)
30 EXPECT_EQ(0x34u, first_byte); 30 EXPECT_EQ(0x34u, first_byte);
31 #elif defined(RTC_ARCH_CPU_BIG_ENDIAN) 31 #elif defined(RTC_ARCH_CPU_BIG_ENDIAN)
32 EXPECT_EQ(0x12u, first_byte); 32 EXPECT_EQ(0x12u, first_byte);
33 #endif 33 #endif
34 } 34 }
35 35
36 TEST(BasicTypesTest, SizeOfTypes) { 36 TEST(BasicTypesTest, SizeOfTypes) {
Henrik Grunell WebRTC 2015/09/22 10:35:54 Same here. Remove test.
pbos-webrtc 2015/09/22 12:17:42 Done.
37 int8 i8 = -1; 37 int8_t i8 = -1;
38 uint8 u8 = 1u; 38 uint8_t u8 = 1u;
39 int16 i16 = -1; 39 int16_t i16 = -1;
40 uint16 u16 = 1u; 40 uint16_t u16 = 1u;
41 int32 i32 = -1; 41 int32_t i32 = -1;
42 uint32 u32 = 1u; 42 uint32_t u32 = 1u;
43 int64 i64 = -1; 43 int64_t i64 = -1;
44 uint64 u64 = 1u; 44 uint64_t u64 = 1u;
45 EXPECT_EQ(1u, sizeof(i8)); 45 EXPECT_EQ(1u, sizeof(i8));
46 EXPECT_EQ(1u, sizeof(u8)); 46 EXPECT_EQ(1u, sizeof(u8));
47 EXPECT_EQ(2u, sizeof(i16)); 47 EXPECT_EQ(2u, sizeof(i16));
48 EXPECT_EQ(2u, sizeof(u16)); 48 EXPECT_EQ(2u, sizeof(u16));
49 EXPECT_EQ(4u, sizeof(i32)); 49 EXPECT_EQ(4u, sizeof(i32));
50 EXPECT_EQ(4u, sizeof(u32)); 50 EXPECT_EQ(4u, sizeof(u32));
51 EXPECT_EQ(8u, sizeof(i64)); 51 EXPECT_EQ(8u, sizeof(i64));
52 EXPECT_EQ(8u, sizeof(u64)); 52 EXPECT_EQ(8u, sizeof(u64));
53 EXPECT_GT(0, i8); 53 EXPECT_GT(0, i8);
54 EXPECT_LT(0u, u8); 54 EXPECT_LT(0u, u8);
(...skipping 20 matching lines...) Expand all
75 #error expected CPU_X86 to be defined. 75 #error expected CPU_X86 to be defined.
76 #endif 76 #endif
77 #if !defined(RTC_ARCH_CPU_LITTLE_ENDIAN) && \ 77 #if !defined(RTC_ARCH_CPU_LITTLE_ENDIAN) && \
78 (defined(WEBRTC_WIN) || defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) || defined (CPU_X86)) 78 (defined(WEBRTC_WIN) || defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) || defined (CPU_X86))
79 #error expected RTC_ARCH_CPU_LITTLE_ENDIAN to be defined. 79 #error expected RTC_ARCH_CPU_LITTLE_ENDIAN to be defined.
80 #endif 80 #endif
81 81
82 // TODO(fbarchard): Test all macros in basictypes.h 82 // TODO(fbarchard): Test all macros in basictypes.h
83 83
84 } // namespace rtc 84 } // namespace rtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698