Tighten regexp in gdb.base/setshow.exp

https://sourceware.org/ml/gdb-patches/2013-11/msg00817.html

gdb/testsuite/ChangeLog

	* gdb.base/setshow.exp: Add $gdb_prompt to the patterns in
	gdb_test_multiple.
This commit is contained in:
Andrew Burgess 2013-11-26 16:28:33 +00:00
parent 492e19d098
commit d24a9f159c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-11-26 Andrew Burgess <aburgess@broadcom.com>
* gdb.base/setshow.exp: Add $gdb_prompt to the patterns in
gdb_test_multiple.
2013-11-26 Tom Tromey <tromey@redhat.com>
* gdb.dwarf2/dw2-unspecified-ret-addr.S: Remove.

View File

@ -169,7 +169,7 @@ gdb_test "show history expansion on" "History expansion on command input is on.*
set HOME ""
set test "show environment HOME"
gdb_test_multiple $test $test {
-re "\nHOME = (.*).\n.*" {
-re "\nHOME = (\[^\r\n\]*)\[\r\n\]+$gdb_prompt $" {
set HOME $expect_out(1,string)
pass $test
}
@ -185,7 +185,7 @@ gdb_test "show history filename" \
set PWD ""
set test "show working directory"
gdb_test_multiple "pwd" $test {
-re "\nWorking directory (.*)..\n.*" {
-re "\nWorking directory (\[^\r\n\]*)\\.\[\r\n\]+$gdb_prompt $" {
set PWD $expect_out(1,string)
pass $test
}