diff --git a/tooling/test/debugger_cint_client_test.cpp b/tooling/test/debugger_cint_client_test.cpp index f977cd77dbd5d71a18ee036070fe00f8c20d07af..f92bfeef72efef37be787fa6fa1783c4007e731e 100644 --- a/tooling/test/debugger_cint_client_test.cpp +++ b/tooling/test/debugger_cint_client_test.cpp @@ -40,7 +40,7 @@ public: SetCurrentTestName(GetParam()); TestHelper::CreateEcmaVMWithScope(instance, thread, scope, false, true); TestUtil::ForkSocketClient(g_port, GetParam()); - JSNApi::DebugOption debugOption = {DEBUGGER_LIBRARY, true, g_port}; + JSNApi::DebugOption debugOption = {DEBUGGER_LIBRARY, true, false, g_port}; JSNApi::StartDebugger(instance, debugOption); if (instance->GetJsDebuggerManager() != nullptr) { instance->GetJsDebuggerManager()->DisableObjectHashDisplay(); diff --git a/tooling/test/debugger_cinterp_test.cpp b/tooling/test/debugger_cinterp_test.cpp index 3e7452fafc96c57d76592230eb2d94eea0df0658..b7e1da0913cbd9b664c4171ec7a8aa9bf684311f 100644 --- a/tooling/test/debugger_cinterp_test.cpp +++ b/tooling/test/debugger_cinterp_test.cpp @@ -38,7 +38,7 @@ public: { SetCurrentTestName(GetParam()); TestHelper::CreateEcmaVMWithScope(instance, thread, scope, false, true); - JSNApi::DebugOption debugOption = {DEBUGGER_TEST_LIBRARY, true, -1}; + JSNApi::DebugOption debugOption = {DEBUGGER_TEST_LIBRARY, true, false, -1}; JSNApi::StartDebugger(instance, debugOption); if (instance->GetJsDebuggerManager() != nullptr) { instance->GetJsDebuggerManager()->DisableObjectHashDisplay(); diff --git a/tooling/test/debugger_client_test.cpp b/tooling/test/debugger_client_test.cpp index 706608079702153dd1671d977b8b67f3a47b15c2..aaafa5d32bf8b46c47cc519c6e6a2d66da6d6a9e 100644 --- a/tooling/test/debugger_client_test.cpp +++ b/tooling/test/debugger_client_test.cpp @@ -40,7 +40,7 @@ public: SetCurrentTestName(GetParam()); TestHelper::CreateEcmaVMWithScope(instance, thread, scope); TestUtil::ForkSocketClient(g_port, GetParam()); - JSNApi::DebugOption debugOption = {DEBUGGER_LIBRARY, true, g_port}; + JSNApi::DebugOption debugOption = {DEBUGGER_LIBRARY, true, false, g_port}; JSNApi::StartDebugger(instance, debugOption); if (instance->GetJsDebuggerManager() != nullptr) { instance->GetJsDebuggerManager()->DisableObjectHashDisplay(); diff --git a/tooling/test/debugger_entry_test.cpp b/tooling/test/debugger_entry_test.cpp index 6710e86a217fd607f7e389601fb006334936ed57..00f665a55cefaa7589244291cd34cc30c7acfff3 100644 --- a/tooling/test/debugger_entry_test.cpp +++ b/tooling/test/debugger_entry_test.cpp @@ -38,7 +38,7 @@ public: { SetCurrentTestName(GetParam()); TestHelper::CreateEcmaVMWithScope(instance, thread, scope); - JSNApi::DebugOption debugOption = {DEBUGGER_TEST_LIBRARY, true, -1}; + JSNApi::DebugOption debugOption = {DEBUGGER_TEST_LIBRARY, true, false, -1}; JSNApi::StartDebugger(instance, debugOption); if (instance->GetJsDebuggerManager() != nullptr) { instance->GetJsDebuggerManager()->DisableObjectHashDisplay();