mtest: stop disrespecting the gdb config file

This was added in commit 01be50fdd9 with
zero explanation as a side effect of moving code around. It seems like a
really bad idea and it causes people to view debugging Meson projects on
e.g. debuginfod systems as "painful".
0.61
Eli Schwartz 3 years ago committed by Nirbheek Chauhan
parent 02c85bb73f
commit 26936e1edb
  1. 2
      mesonbuild/mtest.py

@ -1799,7 +1799,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

Loading…
Cancel
Save