Blame 00196-test-gdb-match-addr-before-builtin.patch

e32ce18
Subject: python3.test gdb match addr before builtin
e32ce18
From: Michel Normand <normand@linux.vnet.ibm.com>
e32ce18
e32ce18
For ppc64le archi and python3... and gdb... versions
e32ce18
the test_gdb.py need a change of re.match to handle address before the builtin_id word.
e32ce18
Of course there is no error if this substring is not present.
e32ce18
===
e32ce18
...
e32ce18
#0  0x00003fffb7dd0898 in builtin_id (self=<module at remote 0x3fffb7901440>, v=<unknown at remote 0x3fffb7f68910>) at /builddir/build/BUILD/Python-3.3.2/Python/bltinmodule.c:966
e32ce18
....xxxxxxxxxxxxxxxxxxxxxx <= added regexp
e32ce18
===
e32ce18
e32ce18
Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
e32ce18
---
e32ce18
 Lib/test/test_gdb.py |    2 +-
e32ce18
 1 file changed, 1 insertion(+), 1 deletion(-)
e32ce18
e32ce18
Index: Python-3.3.2/Lib/test/test_gdb.py
e32ce18
===================================================================
e32ce18
--- Python-3.3.2.orig/Lib/test/test_gdb.py
e32ce18
+++ Python-3.3.2/Lib/test/test_gdb.py
e32ce18
@@ -230,7 +230,7 @@ class DebuggerTests(unittest.TestCase):
e32ce18
         # gdb can insert additional '\n' and space characters in various places
e32ce18
         # in its output, depending on the width of the terminal it's connected
e32ce18
         # to (using its "wrap_here" function)
e32ce18
-        m = re.match('.*#0\s+builtin_id\s+\(self\=.*,\s+v=\s*(.*?)\)\s+at\s+\S*Python/bltinmodule.c.*',
e32ce18
+        m = re.match('.*#0\s+(?: 0x[0-9a-f]+\s+in\s+)?builtin_id\s+\(self\=.*,\s+v=\s*(.*?)\)\s+at\s+\S*Python/bltinmodule.c.*',
e32ce18
                      gdb_output, re.DOTALL)
e32ce18
         if not m:
e32ce18
             self.fail('Unexpected gdb output: %r\n%s' % (gdb_output, gdb_output))