From: Florian Weimer Date: Fri, 23 Dec 2016 14:13:28 +0000 (+0100) Subject: scripts/test_printers_common.py: Log GDB error message X-Git-Tag: glibc-2.25~162 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=b064bba552e38e08a69a91424247ae67de493345;p=glibc.git scripts/test_printers_common.py: Log GDB error message If GDB prints an error message for a "python" command, include that error message in the test log output, to simplify diagnosing GDB/Python detection issues. --- diff --git a/ChangeLog b/ChangeLog index 1fcd9eda10..04d4971005 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-12-23 Florian Weimer + + * scripts/test_printers_common.py: Log GDB output in case of + Python detection failure. + 2016-12-22 Siddhesh Poyarekar * configure.ac: Check for python3 or python. diff --git a/scripts/test_printers_common.py b/scripts/test_printers_common.py index c79d7e3be2..c605a3c00a 100644 --- a/scripts/test_printers_common.py +++ b/scripts/test_printers_common.py @@ -87,6 +87,7 @@ try: if gdb_python_error: print('gdb must have python support to test the pretty printers.') + print('gdb output: {!r}'.format(gdb_python_error)) exit(UNSUPPORTED) # If everything's ok, spawn the gdb process we'll use for testing.