diff options
Diffstat (limited to 'mesonbuild/mtest.py')
-rw-r--r-- | mesonbuild/mtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index b474cd4..a4ea5aa 100644 --- a/mesonbuild/mtest.py +++ b/mesonbuild/mtest.py @@ -1806,7 +1806,7 @@ class TestHarness: def get_wrapper(options: argparse.Namespace) -> T.List[str]: wrap = [] # type: T.List[str] if options.gdb: - wrap = [options.gdb_path, '--quiet', '--nh'] + wrap = [options.gdb_path, '--quiet'] if options.repeat > 1: wrap += ['-ex', 'run', '-ex', 'quit'] # Signal the end of arguments to gdb |