]> granicus.if.org Git - python/commitdiff
Issue #25820: Remove unused assignment and redundant GDB CLI arguments
authorMartin Panter <vadmium+py@gmail.com>
Tue, 8 Dec 2015 21:54:42 +0000 (21:54 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Tue, 8 Dec 2015 21:54:42 +0000 (21:54 +0000)
These were added in revision b71cda2f48c6.

Lib/test/test_gdb.py

index 6c4a34894011f67372124f4f3d093f72fb445d90..16fb389e7b9a938da8c1004cee516272a236a107 100644 (file)
@@ -89,7 +89,6 @@ if not gdbpy_version:
 
 # Verify that "gdb" can load our custom hooks, as OS security settings may
 # disallow this without a customised .gdbinit.
-cmd = ['--args', sys.executable]
 _, gdbpy_errors = run_gdb('--args', sys.executable)
 if "auto-loading has been declined" in gdbpy_errors:
     msg = "gdb security settings prevent use of custom hooks: "
@@ -171,8 +170,7 @@ class DebuggerTests(unittest.TestCase):
         # print commands
 
         # Use "commands" to generate the arguments with which to invoke "gdb":
-        args = ["gdb", "--batch", "-nx"]
-        args += ['--eval-command=%s' % cmd for cmd in commands]
+        args = ['--eval-command=%s' % cmd for cmd in commands]
         args += ["--args",
                  sys.executable]