diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-12-09 02:05:03 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-12-09 02:05:03 +0000 |
commit | 747029afdc1b147b4262a508616d5dfd2ed503c0 (patch) | |
tree | 5102546ceedcae82565d4e769707608cc25cace5 | |
parent | 2e7fca8e481a6ae41fc5a85c2cf8ecb213cc680c (diff) | |
parent | 40e102c193e2df31130ec5181347e0ac1467b485 (diff) | |
download | cpython-git-747029afdc1b147b4262a508616d5dfd2ed503c0.tar.gz |
Issue #25820: Merge test_gdb fixes from 3.5
-rw-r--r-- | Lib/test/test_gdb.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 6c4a348940..16fb389e7b 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -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] |