[Lldb-commits] [lldb] 529e03e - [lldb] Remove named function arguments from TestQemuLaunch
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 13 06:42:01 PST 2021
Author: Pavel Labath
Date: 2021-12-13T15:30:26+01:00
New Revision: 529e03ea650a8eb3327c697c9c930793ab54c0af
URL: https://github.com/llvm/llvm-project/commit/529e03ea650a8eb3327c697c9c930793ab54c0af
DIFF: https://github.com/llvm/llvm-project/commit/529e03ea650a8eb3327c697c9c930793ab54c0af.diff
LOG: [lldb] Remove named function arguments from TestQemuLaunch
This is a swig-4 feature.
Added:
Modified:
lldb/test/API/qemu/TestQemuLaunch.py
Removed:
################################################################################
diff --git a/lldb/test/API/qemu/TestQemuLaunch.py b/lldb/test/API/qemu/TestQemuLaunch.py
index 54312495393ef..07d7cb6a82f9d 100644
--- a/lldb/test/API/qemu/TestQemuLaunch.py
+++ b/lldb/test/API/qemu/TestQemuLaunch.py
@@ -202,9 +202,9 @@ def cleanup():
self.assertEqual(env.Get(var(3)), "from host")
# Finally, make some launch_info specific changes.
- env.Set(var(2), "from target", overwrite=True)
+ env.Set(var(2), "from target", True)
env.Unset(var(3))
- info.SetEnvironment(env, append=False)
+ info.SetEnvironment(env, False)
# Now check everything. Launch info changes should trump everything, but
# only for the target environment -- the emulator should still get the
More information about the lldb-commits
mailing list