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

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

Issue 1337943003: [tracing] Non-functional refactor of memory dump arg names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows test Created 5 years, 3 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 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/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 = {MemoryDumpArgs::LevelOfDetail::HIGH}; 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
20 ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing = 1024; 20 ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing = 1024;
21 pmtdp->OnMemoryDump(high_detail_args, pmd_before.get()); 21 pmtdp->OnMemoryDump(high_detail_args, pmd_before.get());
22 22
23 // Pretend that the RSS of the process increased of +1M. 23 // Pretend that the RSS of the process increased of +1M.
24 const size_t kAllocSize = 1048576; 24 const size_t kAllocSize = 1048576;
25 ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing += kAllocSize; 25 ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing += kAllocSize;
26 26
27 pmtdp->OnMemoryDump(high_detail_args, pmd_after.get()); 27 pmtdp->OnMemoryDump(high_detail_args, pmd_after.get());
28 28
29 ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing = 0; 29 ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing = 0;
30 30
31 ASSERT_TRUE(pmd_before->has_process_totals()); 31 ASSERT_TRUE(pmd_before->has_process_totals());
32 ASSERT_TRUE(pmd_after->has_process_totals()); 32 ASSERT_TRUE(pmd_after->has_process_totals());
33 33
34 const uint64 rss_before = pmd_before->process_totals()->resident_set_bytes(); 34 const uint64 rss_before = pmd_before->process_totals()->resident_set_bytes();
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.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698