mirror of
https://github.com/intel/llvm.git
synced 2026-01-24 08:30:34 +08:00
Revert "[lldb] Added Debuginfod tests and fixed a couple issues" (#93094)
Reverts llvm/llvm-project#92572 due to Fuchsia CI breakages (using CLI tools in tests that weren't necessarily built).
This commit is contained in:
committed by
GitHub
parent
1529ec085a
commit
c93a67038d
@@ -775,9 +775,6 @@ SBStructuredData SBDebugger::GetBuildConfiguration() {
|
||||
AddBoolConfigEntry(
|
||||
*config_up, "xml", XMLDocument::XMLEnabled(),
|
||||
"A boolean value that indicates if XML support is enabled in LLDB");
|
||||
AddBoolConfigEntry(
|
||||
*config_up, "curl", LLVM_ENABLE_CURL,
|
||||
"A boolean value that indicates if CURL support is enabled in LLDB");
|
||||
AddBoolConfigEntry(
|
||||
*config_up, "curses", LLDB_ENABLE_CURSES,
|
||||
"A boolean value that indicates if curses support is enabled in LLDB");
|
||||
@@ -1727,20 +1724,20 @@ SBDebugger::LoadTraceFromFile(SBError &error,
|
||||
|
||||
void SBDebugger::RequestInterrupt() {
|
||||
LLDB_INSTRUMENT_VA(this);
|
||||
|
||||
|
||||
if (m_opaque_sp)
|
||||
m_opaque_sp->RequestInterrupt();
|
||||
m_opaque_sp->RequestInterrupt();
|
||||
}
|
||||
void SBDebugger::CancelInterruptRequest() {
|
||||
LLDB_INSTRUMENT_VA(this);
|
||||
|
||||
|
||||
if (m_opaque_sp)
|
||||
m_opaque_sp->CancelInterruptRequest();
|
||||
m_opaque_sp->CancelInterruptRequest();
|
||||
}
|
||||
|
||||
bool SBDebugger::InterruptRequested() {
|
||||
LLDB_INSTRUMENT_VA(this);
|
||||
|
||||
|
||||
if (m_opaque_sp)
|
||||
return m_opaque_sp->InterruptRequested();
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user