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

Side by Side Diff: test/cctest/test-heap-profiler.cc

Issue 214051: Pushed 1.3.12 to trunk. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 11 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 | Annotate | Revision Log
« no previous file with comments | « test/cctest/SConscript ('k') | test/es5conform/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // 2 //
3 // Tests for heap profiler 3 // Tests for heap profiler
4 4
5 #ifdef ENABLE_LOGGING_AND_PROFILING 5 #ifdef ENABLE_LOGGING_AND_PROFILING
6 6
7 #include "v8.h" 7 #include "v8.h"
8 #include "heap-profiler.h" 8 #include "heap-profiler.h"
9 #include "string-stream.h" 9 #include "string-stream.h"
10 #include "cctest.h" 10 #include "cctest.h"
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 ret_profile.CollectStats(obj); 321 ret_profile.CollectStats(obj);
322 } 322 }
323 RetainerProfilePrinter printer; 323 RetainerProfilePrinter printer;
324 ret_profile.DebugPrintStats(&printer); 324 ret_profile.DebugPrintStats(&printer);
325 CHECK_EQ("(global property);1,B;2,C;2", printer.GetRetainers("A")); 325 CHECK_EQ("(global property);1,B;2,C;2", printer.GetRetainers("A"));
326 CHECK_EQ("(global property);2", printer.GetRetainers("B")); 326 CHECK_EQ("(global property);2", printer.GetRetainers("B"));
327 CHECK_EQ("(global property);1", printer.GetRetainers("C")); 327 CHECK_EQ("(global property);1", printer.GetRetainers("C"));
328 } 328 }
329 329
330 #endif // ENABLE_LOGGING_AND_PROFILING 330 #endif // ENABLE_LOGGING_AND_PROFILING
OLDNEW
« no previous file with comments | « test/cctest/SConscript ('k') | test/es5conform/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698