[gdb/testsuite] Fix gdb.fortran/call-no-debug.exp with native-gdbserver
authorTom de Vries <tdevries@suse.de>
Wed, 13 Oct 2021 09:36:02 +0000 (11:36 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 13 Oct 2021 09:36:02 +0000 (11:36 +0200)
When running test-case gdb.fortran/call-no-debug.exp with target board
native-gdbserver, I run into:
...
(gdb) PASS: gdb.fortran/call-no-debug.exp: print string_func_ (&'abcdefg', 3)
call (integer) string_func_ (&'abcdefg', 3)^M
$2 = 0^M
(gdb) FAIL: gdb.fortran/call-no-debug.exp: call (integer) string_func_ (&'abcdefg', 3)
...

The problem is that gdb_test is used to match inferior output.

Fix this by using gdb_test_stdio.

Tested on x86_64-linux.

gdb/testsuite/gdb.fortran/call-no-debug.exp

index 3c5172e7e36b54ab6777c84b3fc18af4f84e4c2b..cbdefb6a7d9850e7fd43cba87a5a400a0845b6c4 100644 (file)
@@ -102,5 +102,7 @@ if { $symbol_name == "" } {
     gdb_test "ptype ${symbol_name}" "type = <unknown return type> \\(\\)"
     gdb_test "print ${symbol_name} (&'abcdefg', 3)" \
        "'${symbol_name}' has unknown return type; cast the call to its declared return type"
-    gdb_test "call (integer) ${symbol_name} (&'abcdefg', 3)" " abc\r\n\\\$\\d+ = 0"
+    gdb_test_stdio "call (integer) ${symbol_name} (&'abcdefg', 3)" \
+       " abc" \
+       "\\\$\\d+ = 0"
 }