[Lldb-commits] [lldb] [lldb-dap] Add support for launching supported clients (PR #165941)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 31 17:58:20 PDT 2025
================
@@ -0,0 +1,48 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "ClientLauncher.h"
+#include "llvm/ADT/StringRef.h"
+#include "gtest/gtest.h"
+#include <optional>
+
+using namespace lldb_dap;
+using namespace llvm;
+
+TEST(ClientLauncherTest, GetClientFromVSCode) {
----------------
ashgti wrote:
Should we also include a URLEncode test? Either directly or by checking with calls to `VSCodeLauncher::Launch`?
https://github.com/llvm/llvm-project/pull/165941
More information about the lldb-commits
mailing list