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

Unified Diff: test/cctest/test-debug.cc

Issue 199075: Implemented missing pieces of the debugger for ARM (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/cctest.status ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-debug.cc
===================================================================
--- test/cctest/test-debug.cc (revision 2877)
+++ test/cctest/test-debug.cc (working copy)
@@ -2301,13 +2301,8 @@
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();
« no previous file with comments | « test/cctest/cctest.status ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698