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

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

Issue 698002: Added zone-inl.h to test-heap-profiler to fix test build failure after header... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 9 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 | « no previous file | no next file » | 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"
11 #include "zone-inl.h"
11 12
12 namespace i = v8::internal; 13 namespace i = v8::internal;
13 using i::ClustersCoarser; 14 using i::ClustersCoarser;
14 using i::JSObjectsCluster; 15 using i::JSObjectsCluster;
15 using i::JSObjectsRetainerTree; 16 using i::JSObjectsRetainerTree;
16 using i::JSObjectsClusterTree; 17 using i::JSObjectsClusterTree;
17 using i::RetainerHeapProfile; 18 using i::RetainerHeapProfile;
18 19
19 20
20 static void CompileAndRunScript(const char *src) { 21 static void CompileAndRunScript(const char *src) {
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 CHECK_EQ(i::StrLength("(global property);1,B;2,C;2"), 384 CHECK_EQ(i::StrLength("(global property);1,B;2,C;2"),
384 i::StrLength(retainers_of_a)); 385 i::StrLength(retainers_of_a));
385 CHECK(strstr(retainers_of_a, "(global property);1") != NULL); 386 CHECK(strstr(retainers_of_a, "(global property);1") != NULL);
386 CHECK(strstr(retainers_of_a, "B;2") != NULL); 387 CHECK(strstr(retainers_of_a, "B;2") != NULL);
387 CHECK(strstr(retainers_of_a, "C;2") != NULL); 388 CHECK(strstr(retainers_of_a, "C;2") != NULL);
388 CHECK_EQ("(global property);2", printer.GetRetainers("B")); 389 CHECK_EQ("(global property);2", printer.GetRetainers("B"));
389 CHECK_EQ("(global property);1", printer.GetRetainers("C")); 390 CHECK_EQ("(global property);1", printer.GetRetainers("C"));
390 } 391 }
391 392
392 #endif // ENABLE_LOGGING_AND_PROFILING 393 #endif // ENABLE_LOGGING_AND_PROFILING
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698