Commit 9a9a2687 authored by yurys@chromium.org's avatar yurys@chromium.org

Fix test-debug: make sure debugger is unloaded before running next test

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4527 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ea1d2ad8
......@@ -670,6 +670,7 @@ class Debugger {
// Unload the debugger if possible. Only called when no debugger is currently
// active.
static void UnloadDebugger();
friend void ForceUnloadDebugger(); // In test-debug.cc
inline static bool EventActive(v8::DebugEvent event) {
ScopedLock with(debugger_access_);
......
......@@ -436,6 +436,12 @@ void CheckDebuggerUnloaded(bool check_functions) {
}
void ForceUnloadDebugger() {
Debugger::never_unload_debugger_ = false;
Debugger::UnloadDebugger();
}
} } // namespace v8::internal
......@@ -6146,5 +6152,8 @@ TEST(DebugContextIsPreservedBetweenAccesses) {
v8::Local<v8::Context> context1 = v8::Debug::GetDebugContext();
v8::Local<v8::Context> context2 = v8::Debug::GetDebugContext();
CHECK_EQ(*context1, *context2);
// Make sure debugger is unloaded before running other tests.
v8::internal::ForceUnloadDebugger();
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