[gdb/testsuite] Fix gdb.threads/multiple-successive-infcall.exp on native-gdbserver
authorTom de Vries <tdevries@suse.de>
Thu, 9 Mar 2023 11:56:27 +0000 (12:56 +0100)
committerTom de Vries <tdevries@suse.de>
Thu, 9 Mar 2023 11:56:27 +0000 (12:56 +0100)
With test-case gdb.threads/multiple-successive-infcall.exp and target board
native-gdbserver I run into:
...
(gdb) continue^M
Continuing.^M
[New Thread 758.759]^M
^M
Thread 1 "multiple-succes" hit Breakpoint 2, main () at \
  multiple-successive-infcall.c:97^M
97            thread_ids[tid] = tid + 2; /* prethreadcreationmarker */^M
(gdb) FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: \
  created new thread
...

The problem is that the new thread message doesn't match the regexp, which
expects something like this instead:
...
[New Thread 0x7ffff746e700 (LWP 570)]^M
...

Fix this by accepting this form of new thread message.

Tested on x86_64-linux.

gdb/testsuite/gdb.threads/multiple-successive-infcall.exp

index f33cba628558187914f702a620155a02a2963f5d..bd037a026743e1b5f6ed03c29cbbfc734347ce84 100644 (file)
@@ -40,6 +40,9 @@ foreach_with_prefix thread {5 4 3}  {
     -re "\\\[New Thread ${hex} \\\(LWP \[0-9\]+\\\)\\\].*${gdb_prompt}" {
       pass "${after_new_thread_message}"
     }
+    -re -wrap "\\\[New Thread $decimal\\.$decimal\\\]\r\n.*" {
+      pass $gdb_test_name
+    }
   }
 }