gdb/testsuite: expect SIGSEGV from top GDB spawn id
authorSimon Marchi <simon.marchi@efficios.com>
Sat, 14 Jan 2023 01:08:41 +0000 (20:08 -0500)
committerSimon Marchi <simon.marchi@efficios.com>
Tue, 17 Jan 2023 16:22:22 +0000 (11:22 -0500)
When testing with the native-extended-gdbserver, I get:

    Thread 1 "xgdb" received signal SIGSEGV, Segmentation fault.
    0x00007ffff6d828f2 in GC_find_limit_with_bound () from /usr/lib/x86_64-linux-gnu/libgc.so.1
    (gdb) FAIL: gdb.gdb/selftest.exp: xgdb is at prompt

This is because the -re that is supposed to match this SIGSEGV is after
`-i $inferior_spawn_id`.  On native, the top and bottom GDB are on the
same spawn id, so it ends up working.  But with a gdbserver board,
that's not the case.  Move the SIGSEGV -re before the `-i
$inferior_spawn_id` line, such that it matches what the top GDB outputs.

Do the same fix in gdb.gdb/python-helper.exp.

Change-Id: I3291630e218a5a3a6a47805b999ddbc9b968c927
Approved-By: Tom Tromey <tom@tromey.com>
gdb/testsuite/gdb.gdb/python-helper.exp
gdb/testsuite/gdb.gdb/selftest.exp

index c147c6bcbb03f3970102292762917c452d66a9ce..98f03ef456f3c6b1b56eda0d13cf90529d13f5e8 100644 (file)
@@ -86,13 +86,13 @@ proc test_python_helper {} {
     # stop is being detected from the inner GDB, hence the use of -i
     # here.
     gdb_test_multiple "continue" "start inner gdb" {
-       -i "$inferior_spawn_id"
        -re "received signal SIGSEGV.* in GC_.*$outer_prompt_re" {
            # Some versions of the GC used by Guile cause a SEGV
            # during stack probing.  Ignore this and carry on.
            send_gdb "continue\n"
            exp_continue
        }
+       -i "$inferior_spawn_id"
        -re "\r\n$gdb_prompt $" {
            pass $gdb_test_name
        }
index 177c29fb224d0858068556f41ffa196d42ed1b70..df12602b64bb7abd2b71801a10ff982591b93bf1 100644 (file)
@@ -74,13 +74,13 @@ proc test_with_self { } {
                        "$gdb_prompt $"]
        set test "xgdb is at prompt"
        gdb_test_multiple "continue" $test {
-           -i "$inferior_spawn_id"
            -re "received signal SIGSEGV.* in GC_.*$gdb_prompt" {
                # Some versions of the GC used by Guile cause a SEGV
                # during stack probing.  Ignore this and carry on.
                send_gdb "continue\n"
                exp_continue
            }
+           -i "$inferior_spawn_id"
            -re "$banner" {
                pass $test
            }