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.
This commit is contained in:
Florian Weimer 2016-12-23 15:13:28 +01:00
parent 8ce8299f94
commit b064bba552
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2016-12-23 Florian Weimer <fweimer@redhat.com>
* scripts/test_printers_common.py: Log GDB output in case of
Python detection failure.
2016-12-22 Siddhesh Poyarekar <siddhesh@sourceware.org>
* configure.ac: Check for python3 or python.

View File

@ -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.