| Index: test/cctest/test-cpu-profiler.cc
|
| diff --git a/test/cctest/test-cpu-profiler.cc b/test/cctest/test-cpu-profiler.cc
|
| index a615fe954ef0a5f305f4612319ba603dad52ebb9..2184122717770be2eb0203fd9933394828e7f0e5 100644
|
| --- a/test/cctest/test-cpu-profiler.cc
|
| +++ b/test/cctest/test-cpu-profiler.cc
|
| @@ -802,9 +802,7 @@ TEST(NativeAccessorMonomorphicIC) {
|
|
|
| const v8::CpuProfileNode* root = profile->GetTopDownRoot();
|
| const v8::CpuProfileNode* startNode = GetChild(root, "start");
|
| - // TODO(yurys): in LoadIC should be changed to report external callback
|
| - // invocation. See r13768 where it was LoadCallbackProperty was removed.
|
| - // GetChild(startNode, "get foo");
|
| + GetChild(startNode, "get foo");
|
| GetChild(startNode, "set foo");
|
|
|
| cpu_profiler->DeleteAllCpuProfiles();
|
| @@ -911,9 +909,8 @@ TEST(NativeMethodMonomorphicIC) {
|
|
|
| const v8::CpuProfileNode* root = profile->GetTopDownRoot();
|
| GetChild(root, "start");
|
| - // TODO(yurys): in CallIC should be changed to report external callback
|
| - // invocation.
|
| - // GetChild(startNode, "fooMethod");
|
| + const v8::CpuProfileNode* startNode = GetChild(root, "start");
|
| + GetChild(startNode, "fooMethod");
|
|
|
| cpu_profiler->DeleteAllCpuProfiles();
|
| }
|
|
|