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

Side by Side Diff: mojo/public/c/system/tests/macros_unittest.cc

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file tests the C Mojo system macros and consists of "positive" tests, 5 // This file tests the C Mojo system macros and consists of "positive" tests,
6 // i.e., those verifying that things work (without compile errors, or even 6 // i.e., those verifying that things work (without compile errors, or even
7 // warnings if warnings are treated as errors). 7 // warnings if warnings are treated as errors).
8 // TODO(vtl): Fix no-compile tests (which are all disabled; crbug.com/105388) 8 // TODO(vtl): Fix no-compile tests (which are all disabled; crbug.com/105388)
9 // and write some "negative" tests. 9 // and write some "negative" tests.
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #endif 75 #endif
76 76
77 TEST(MacrosTest, Alignas) { 77 TEST(MacrosTest, Alignas) {
78 EXPECT_EQ(1u, MOJO_ALIGNOF(StructAlignas1)); 78 EXPECT_EQ(1u, MOJO_ALIGNOF(StructAlignas1));
79 EXPECT_EQ(4u, MOJO_ALIGNOF(StructAlignas4)); 79 EXPECT_EQ(4u, MOJO_ALIGNOF(StructAlignas4));
80 EXPECT_EQ(8u, MOJO_ALIGNOF(StructAlignas8)); 80 EXPECT_EQ(8u, MOJO_ALIGNOF(StructAlignas8));
81 } 81 }
82 82
83 } // namespace 83 } // namespace
84 } // namespace mojo 84 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698