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

Side by Side Diff: chrome_elf/ntdll_cache_unittest.cc

Issue 644783004: Replace OVERRIDE with its C++11 counterparts in src/chrome_elf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include <windows.h> 5 #include <windows.h>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome_elf/ntdll_cache.h" 9 #include "chrome_elf/ntdll_cache.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace { 12 namespace {
13 13
14 class NTDLLCacheTest : public testing::Test { 14 class NTDLLCacheTest : public testing::Test {
15 protected: 15 protected:
16 virtual void SetUp() OVERRIDE { 16 virtual void SetUp() override {
17 InitCache(); 17 InitCache();
18 } 18 }
19 19
20 }; 20 };
21 21
22 TEST_F(NTDLLCacheTest, NtDLLCacheSanityCheck) { 22 TEST_F(NTDLLCacheTest, NtDLLCacheSanityCheck) {
23 HMODULE ntdll_handle = ::GetModuleHandle(L"ntdll.dll"); 23 HMODULE ntdll_handle = ::GetModuleHandle(L"ntdll.dll");
24 // Grab a couple random entries from the cache and make sure they match the 24 // Grab a couple random entries from the cache and make sure they match the
25 // addresses exported by ntdll. 25 // addresses exported by ntdll.
26 EXPECT_EQ(::GetProcAddress(ntdll_handle, "A_SHAFinal"), 26 EXPECT_EQ(::GetProcAddress(ntdll_handle, "A_SHAFinal"),
27 g_ntdll_lookup["A_SHAFinal"]); 27 g_ntdll_lookup["A_SHAFinal"]);
28 EXPECT_EQ(::GetProcAddress(ntdll_handle, "ZwTraceControl"), 28 EXPECT_EQ(::GetProcAddress(ntdll_handle, "ZwTraceControl"),
29 g_ntdll_lookup["ZwTraceControl"]); 29 g_ntdll_lookup["ZwTraceControl"]);
30 } 30 }
31 31
32 } // namespace 32 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698