aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-05-11 17:58:57 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2022-05-17 22:54:53 +0300
commit9fe18a63b1c2a34753e8fe6a5cf7b204cbbfb5e9 (patch)
tree0c4002c575a4def83491423262905305c0618454
parent459970b55ffe28c0fc8ef03b41c0c8fbb6ae0139 (diff)
downloadmeson-9fe18a63b1c2a34753e8fe6a5cf7b204cbbfb5e9.zip
meson-9fe18a63b1c2a34753e8fe6a5cf7b204cbbfb5e9.tar.gz
meson-9fe18a63b1c2a34753e8fe6a5cf7b204cbbfb5e9.tar.bz2
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".
-rw-r--r--mesonbuild/mtest.py2
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