From 9fe18a63b1c2a34753e8fe6a5cf7b204cbbfb5e9 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 11 May 2022 17:58:57 -0400 Subject: mtest: stop disrespecting the gdb config file This was added in commit 01be50fdd90851f17de5499537f10b5b62c9fb49 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". --- mesonbuild/mtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild') 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 -- cgit v1.1