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

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

Issue 337022: Fixed release test build breakage. Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-accessors.cc
===================================================================
--- test/cctest/test-accessors.cc (revision 3130)
+++ test/cctest/test-accessors.cc (working copy)
@@ -396,11 +396,11 @@
i::StackFrameIterator iter;
for (int i = 0; !iter.done(); i++) {
i::StackFrame* frame = iter.frame();
- ASSERT(i != 0 || (frame->type() == i::StackFrame::EXIT));
- ASSERT(frame->code()->IsCode());
+ CHECK(i != 0 || (frame->type() == i::StackFrame::EXIT));
+ CHECK(frame->code()->IsCode());
i::Address pc = frame->pc();
i::Code* code = frame->code();
- ASSERT(code->contains(pc));
+ CHECK(code->contains(pc));
iter.Advance();
}
return v8::Undefined();
« 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