Commit 33615c61 authored by danno@chromium.org's avatar danno@chromium.org

Fix flaky debugger test

TBR=sgjesse@chromium.org
BUG=none
TEST=test/cctest/test-debug.cc

Review URL: http://codereview.chromium.org/8773037

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10139 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 25e3d270
...@@ -6869,7 +6869,7 @@ TEST(DebugBreakFunctionApply) { ...@@ -6869,7 +6869,7 @@ TEST(DebugBreakFunctionApply) {
foo->Call(env->Global(), 0, NULL); foo->Call(env->Global(), 0, NULL);
// When keeping the debug break several break will happen. // When keeping the debug break several break will happen.
CHECK_EQ(3, break_point_hit_count); CHECK(break_point_hit_count > 1);
v8::Debug::SetDebugEventListener(NULL); v8::Debug::SetDebugEventListener(NULL);
CheckDebuggerUnloaded(); CheckDebuggerUnloaded();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment