This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH COMMITTED] 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.

2016-12-23  Florian Weimer  <fweimer@redhat.com>

	* scripts/test_printers_common.py: Log GDB output in case of
	Python detection failure.

diff --git a/scripts/test_printers_common.py b/scripts/test_printers_common.py
index c79d7e3..c605a3c 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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]