From fe971d11bf8bc1a6759885ee466f34e28610f8ef Mon Sep 17 00:00:00 2001 From: fangting Date: Thu, 4 Jul 2024 11:30:12 +0800 Subject: [PATCH] =?UTF-8?q?debugOption=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: fangting --- tooling/test/debugger_cint_client_test.cpp | 2 +- tooling/test/debugger_cinterp_test.cpp | 2 +- tooling/test/debugger_client_test.cpp | 2 +- tooling/test/debugger_entry_test.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tooling/test/debugger_cint_client_test.cpp b/tooling/test/debugger_cint_client_test.cpp index f977cd77..f92bfeef 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 3e7452fa..b7e1da09 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 70660807..aaafa5d3 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 6710e86a..00f665a5 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(); -- Gitee