[lldb] Enable inheriting TCC permissions in lldb-test

Like the rest of the test suite, also set the target.inherit-tcc option
to true in lldb-test.
This commit is contained in:
Jonas Devlieghere 2020-08-11 11:36:35 -07:00
parent cf9588a24a
commit 61afdf0ab4
1 changed files with 3 additions and 0 deletions

View File

@ -1102,6 +1102,9 @@ int main(int argc, const char *argv[]) {
Dbg->GetCommandInterpreter().HandleCommand(
"settings set plugin.process.gdb-remote.packet-timeout 60",
/*add_to_history*/ eLazyBoolNo, Result);
Dbg->GetCommandInterpreter().HandleCommand(
"settings set target.inherit-tcc true",
/*add_to_history*/ eLazyBoolNo, Result);
if (!opts::Log.empty())
Dbg->EnableLog("lldb", {"all"}, opts::Log, 0, errs());