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

Side by Side Diff: base/memory/aligned_memory_unittest.cc

Issue 9186057: Add ALIGNAS and ALIGNOF macros to ensure proper alignment of StaticMemorySingletonTraits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: willchan feedback Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « base/memory/aligned_memory.h ('k') | base/memory/singleton.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/memory/aligned_memory.h"
6 #include "base/memory/scoped_ptr.h"
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 #define EXPECT_ALIGNED(ptr, align) \
10 EXPECT_EQ(0u, reinterpret_cast<uintptr_t>(ptr) & (align - 1))
11
12 namespace {
13
14 using base::AlignedMemory;
15
16 TEST(AlignedMemoryTest, StaticAlignment) {
17 static AlignedMemory<8, 8> raw8;
18 static AlignedMemory<8, 16> raw16;
19 static AlignedMemory<8, 256> raw256;
20 static AlignedMemory<8, 4096> raw4096;
21
22 EXPECT_EQ(8u, ALIGNOF(raw8));
23 EXPECT_EQ(16u, ALIGNOF(raw16));
24 EXPECT_EQ(256u, ALIGNOF(raw256));
25 EXPECT_EQ(4096u, ALIGNOF(raw4096));
26
27 EXPECT_ALIGNED(raw8.void_data(), 8);
28 EXPECT_ALIGNED(raw16.void_data(), 16);
29 EXPECT_ALIGNED(raw256.void_data(), 256);
30 EXPECT_ALIGNED(raw4096.void_data(), 4096);
31 }
32
33 TEST(AlignedMemoryTest, StackAlignment) {
34 AlignedMemory<8, 8> raw8;
35 AlignedMemory<8, 16> raw16;
36 AlignedMemory<8, 256> raw256;
37 AlignedMemory<8, 4096> raw4096;
38
39 EXPECT_EQ(8u, ALIGNOF(raw8));
40 EXPECT_EQ(16u, ALIGNOF(raw16));
41 EXPECT_EQ(256u, ALIGNOF(raw256));
42 EXPECT_EQ(4096u, ALIGNOF(raw4096));
43
44 EXPECT_ALIGNED(raw8.void_data(), 8);
45 EXPECT_ALIGNED(raw16.void_data(), 16);
46 EXPECT_ALIGNED(raw256.void_data(), 256);
47 EXPECT_ALIGNED(raw4096.void_data(), 4096);
48 }
49
50 } // namespace
OLDNEW
« no previous file with comments | « base/memory/aligned_memory.h ('k') | base/memory/singleton.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698