Skip to content

Commit 21eeef5

Browse files
authoredMar 21, 2025
Revert "[lldb] Show target.debug-file-search-paths setting from python SBDeb…"
This reverts commit 4b41984.
1 parent 281028e commit 21eeef5

File tree

5 files changed

+0
-36
lines changed

5 files changed

+0
-36
lines changed
 

‎lldb/include/lldb/Interpreter/OptionValueFileSpecList.h

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ class OptionValueFileSpecList
3333
void DumpValue(const ExecutionContext *exe_ctx, Stream &strm,
3434
uint32_t dump_mask) override;
3535

36-
llvm::json::Value ToJSON(const ExecutionContext *exe_ctx) override;
37-
3836
Status
3937
SetValueFromString(llvm::StringRef value,
4038
VarSetOperationType op = eVarSetOperationAssign) override;

‎lldb/include/lldb/Utility/FileSpec.h

-11
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include "llvm/ADT/StringRef.h"
1919
#include "llvm/Support/FileSystem.h"
2020
#include "llvm/Support/FormatVariadic.h"
21-
#include "llvm/Support/JSON.h"
2221
#include "llvm/Support/Path.h"
2322

2423
#include <cstddef>
@@ -215,16 +214,6 @@ class FileSpec {
215214
/// The stream to which to dump the object description.
216215
void Dump(llvm::raw_ostream &s) const;
217216

218-
/// Convert the filespec object to a json value.
219-
///
220-
/// Convert the filespec object to a json value. If the object contains a
221-
/// valid directory name, it will be displayed followed by a directory
222-
/// delimiter, and the filename.
223-
///
224-
/// \return
225-
/// A json value representation of a filespec.
226-
llvm::json::Value ToJSON() const;
227-
228217
Style GetPathStyle() const;
229218

230219
/// Directory string const get accessor.

‎lldb/source/Interpreter/OptionValueFileSpecList.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,6 @@ void OptionValueFileSpecList::DumpValue(const ExecutionContext *exe_ctx,
4141
}
4242
}
4343

44-
llvm::json::Value
45-
OptionValueFileSpecList::ToJSON(const ExecutionContext *exe_ctx) {
46-
std::lock_guard<std::recursive_mutex> lock(m_mutex);
47-
llvm::json::Array array;
48-
for (const auto &file_spec : m_current_value)
49-
array.emplace_back(file_spec.ToJSON());
50-
return array;
51-
}
52-
5344
Status OptionValueFileSpecList::SetValueFromString(llvm::StringRef value,
5445
VarSetOperationType op) {
5546
std::lock_guard<std::recursive_mutex> lock(m_mutex);

‎lldb/source/Utility/FileSpec.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -330,13 +330,6 @@ void FileSpec::Dump(llvm::raw_ostream &s) const {
330330
s << path_separator;
331331
}
332332

333-
llvm::json::Value FileSpec::ToJSON() const {
334-
std::string str;
335-
llvm::raw_string_ostream stream(str);
336-
this->Dump(stream);
337-
return llvm::json::Value(std::move(str));
338-
}
339-
340333
FileSpec::Style FileSpec::GetPathStyle() const { return m_style; }
341334

342335
void FileSpec::SetDirectory(ConstString directory) {

‎lldb/test/API/commands/settings/TestSettings.py

-7
Original file line numberDiff line numberDiff line change
@@ -1016,13 +1016,6 @@ def test_settings_api(self):
10161016
settings_json = self.get_setting_json(setting_path)
10171017
self.assertEqual(settings_json, setting_value)
10181018

1019-
# Test OptionValueFileSpec and OptionValueFileSpecList
1020-
setting_path = "target.debug-file-search-paths"
1021-
setting_value = ["/tmp" "/tmp2"]
1022-
self.runCmd("settings set %s %s" % (setting_path, " ".join(setting_value)))
1023-
settings_json = self.get_setting_json(setting_path)
1024-
self.assertEqual(settings_json, setting_value)
1025-
10261019
# Test OptionValueFormatEntity
10271020
setting_value = """thread #${thread.index}{, name = \\'${thread.name}\\
10281021
'}{, queue = ${ansi.fg.green}\\'${thread.queue}\\'${ansi.normal}}{,

0 commit comments

Comments
 (0)
Please sign in to comment.