1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-06-12 08:21:58 +03:00

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

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