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


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to