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

Side by Side Diff: base/trace_event/process_memory_totals_dump_provider_unittest.cc

Issue 1466413002: Update gtest to 786564fa4a3c, switch to googlemock in gtest Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "base/trace_event/process_memory_totals_dump_provider.h" 5 #include "base/trace_event/process_memory_totals_dump_provider.h"
6 6
7 #include "base/trace_event/process_memory_dump.h" 7 #include "base/trace_event/process_memory_dump.h"
8 #include "base/trace_event/process_memory_totals.h" 8 #include "base/trace_event/process_memory_totals.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/googletest/include/gtest/gtest.h"
10 10
11 namespace base { 11 namespace base {
12 namespace trace_event { 12 namespace trace_event {
13 13
14 TEST(ProcessMemoryTotalsDumpProviderTest, DumpRSS) { 14 TEST(ProcessMemoryTotalsDumpProviderTest, DumpRSS) {
15 const MemoryDumpArgs high_detail_args = {MemoryDumpLevelOfDetail::DETAILED}; 15 const MemoryDumpArgs high_detail_args = {MemoryDumpLevelOfDetail::DETAILED};
16 auto pmtdp = ProcessMemoryTotalsDumpProvider::GetInstance(); 16 auto pmtdp = ProcessMemoryTotalsDumpProvider::GetInstance();
17 scoped_ptr<ProcessMemoryDump> pmd_before(new ProcessMemoryDump(nullptr)); 17 scoped_ptr<ProcessMemoryDump> pmd_before(new ProcessMemoryDump(nullptr));
18 scoped_ptr<ProcessMemoryDump> pmd_after(new ProcessMemoryDump(nullptr)); 18 scoped_ptr<ProcessMemoryDump> pmd_after(new ProcessMemoryDump(nullptr));
19 19
(...skipping 15 matching lines...) Expand all
35 const uint64 rss_after = pmd_after->process_totals()->resident_set_bytes(); 35 const uint64 rss_after = pmd_after->process_totals()->resident_set_bytes();
36 36
37 EXPECT_NE(0U, rss_before); 37 EXPECT_NE(0U, rss_before);
38 EXPECT_NE(0U, rss_after); 38 EXPECT_NE(0U, rss_after);
39 39
40 EXPECT_EQ(rss_after - rss_before, kAllocSize); 40 EXPECT_EQ(rss_after - rss_before, kAllocSize);
41 } 41 }
42 42
43 } // namespace trace_event 43 } // namespace trace_event
44 } // namespace base 44 } // namespace base
OLDNEW
« no previous file with comments | « base/trace_event/process_memory_maps_dump_provider_unittest.cc ('k') | base/trace_event/trace_config_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698