From: Tom de Vries Date: Fri, 27 Sep 2019 15:04:59 +0000 (+0200) Subject: [gdb/testsuite] Fix incomplete regexps in step-precsave.exp X-Git-Tag: binutils-2_34~1219 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=060b3ab4edadfc0d55e606598769c1e5315fd74c;p=thirdparty%2Fbinutils-gdb.git [gdb/testsuite] Fix incomplete regexps in step-precsave.exp The commit 68f7d34dd50 "[gdb/testsuite] Add KFAIL for missing support of reverse-debugging of vmovd" rewrites a gdb_test into a gdb_test_multiple but forgets to add the $gdb_prompt part in the regexp. Add the missing parts of the regexps. Tested on x86_64-linux. gdb/testsuite/ChangeLog: 2019-09-27 Tom de Vries * gdb.reverse/step-precsave.exp: Add missing $gdb_prompt in regexps. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 625a70cf435..87f34d62987 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2019-09-27 Tom de Vries + + * gdb.reverse/step-precsave.exp: Add missing $gdb_prompt in regexps. + 2019-09-27 Tom de Vries PR record/23188 diff --git a/gdb/testsuite/gdb.reverse/step-precsave.exp b/gdb/testsuite/gdb.reverse/step-precsave.exp index f5e15510e1f..2073b8a1542 100644 --- a/gdb/testsuite/gdb.reverse/step-precsave.exp +++ b/gdb/testsuite/gdb.reverse/step-precsave.exp @@ -47,11 +47,13 @@ gdb_test "break $end_of_main" \ # This can take awhile. with_timeout_factor 20 { set test "run to end of main" + set pass_pattern "Breakpoint .* end of main .*" + set kfail_pattern "Process record does not support instruction 0xc5 at.*" gdb_test_multiple "continue" $test { - -re "Breakpoint .* end of main .*" { + -re "\[\r\n\]*(?:$pass_pattern)\[\r\n\]+$gdb_prompt $" { pass $test } - -re "Process record does not support instruction 0xc5 at.*$gdb_prompt $" { + -re "\[\r\n\]*(?:$kfail_pattern)\[\r\n\]+$gdb_prompt $" { kfail "record/23188" $test } }