[gdb/testsuite] Fix have_mpx with remote-gdbserver-on-localhost
authorTom de Vries <tdevries@suse.de>
Fri, 7 Oct 2022 14:17:35 +0000 (16:17 +0200)
committerTom de Vries <tdevries@suse.de>
Fri, 7 Oct 2022 14:17:35 +0000 (16:17 +0200)
With target board remote-gdbserver-on-localhost and gdb.arch/i386-mpx-call.exp
I run into:
...
FAIL: gdb.arch/i386-mpx-call.exp: upper_bnd0: continue to a bnd violation
...

This is due to the have_mpx test which should return 0, but instead returns 1
because the captured output:
...
No MPX support
No MPX support
...
does not match the used regexp:
...
    set status [expr ($status == 0) \
                   && ![regexp "^No MPX support\r\n" $output]]
...
which does match the captured output with native:
...
No MPX support^M
No MPX support^M
...

Fix this by making the \r in the regexp optional.

Tested on x86_64-linux, with native and target board
remote-gdbserver-on-localhost.

gdb/testsuite/lib/gdb.exp

index d60dceffd3f73fd938e96dee0a00c582a0c18f0d..99a6de6f7245e1e8e13b2ed1474241c165f4baea 100644 (file)
@@ -8636,7 +8636,7 @@ gdb_caching_proc have_mpx {
     set status [lindex $result 0]
     set output [lindex $result 1]
     set status [expr ($status == 0) \
-                   && ![regexp "^No MPX support\r\n" $output]]
+                   && ![regexp "^No MPX support\r?\n" $output]]
 
     remote_file build delete $obj