From 060b3ab4edadfc0d55e606598769c1e5315fd74c Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Fri, 27 Sep 2019 17:04:59 +0200 Subject: [PATCH] [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. --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/gdb.reverse/step-precsave.exp | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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 } } -- 2.30.2