summaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/test-debug.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/cctest/test-debug.cc')
-rw-r--r--deps/v8/test/cctest/test-debug.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/deps/v8/test/cctest/test-debug.cc b/deps/v8/test/cctest/test-debug.cc
index 0cae26cfb0..436084af37 100644
--- a/deps/v8/test/cctest/test-debug.cc
+++ b/deps/v8/test/cctest/test-debug.cc
@@ -2301,13 +2301,8 @@ TEST(DebugStepLinearMixedICs) {
break_point_hit_count = 0;
foo->Call(env->Global(), 0, NULL);
- // With stepping all break locations are hit. For ARM the keyed load/store
- // is not hit as they are not implemented as ICs.
-#if defined (__arm__) || defined(__thumb__)
- CHECK_EQ(6, break_point_hit_count);
-#else
+ // With stepping all break locations are hit.
CHECK_EQ(8, break_point_hit_count);
-#endif
v8::Debug::SetDebugEventListener(NULL);
CheckDebuggerUnloaded();