aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.cp/gdb2495.exp
diff options
context:
space:
mode:
authorLuis Machado <lgustavo@codesourcery.com>2016-12-01 14:43:42 -0600
committerLuis Machado <lgustavo@codesourcery.com>2016-12-01 14:43:42 -0600
commitde97fdd4a05cd7ad0b05444f1721f26c1ad9322f (patch)
tree8e3e5eb9ce882057acb1211137ed95467da363d9 /gdb/testsuite/gdb.cp/gdb2495.exp
parent9f058c10cef5987ee1f1cb28c9a8cf5ef1ec4d11 (diff)
downloadgdb-de97fdd4a05cd7ad0b05444f1721f26c1ad9322f.zip
gdb-de97fdd4a05cd7ad0b05444f1721f26c1ad9322f.tar.gz
gdb-de97fdd4a05cd7ad0b05444f1721f26c1ad9322f.tar.bz2
Fix test names starting with uppercase using gdb_test_multiple
This fixes offender testcases that have test names starting with uppercase when using gdb_test_multiple in a single-line construct. gdb/testsuite/ChangeLog 2016-12-01 Luis Machado <lgustavo@codesourcery.com> Fix test names starting with uppercase throughout the files. * gdb.arch/i386-bp_permanent.exp * gdb.arch/i386-gnu-cfi.exp * gdb.base/disasm-end-cu.exp * gdb.base/macscp.exp * gdb.base/pending.exp * gdb.base/watch_thread_num.exp * gdb.cp/exception.exp * gdb.cp/gdb2495.exp * gdb.cp/local.exp * gdb.python/py-evsignal.exp * gdb.python/python.exp * gdb.trace/tracecmd.exp
Diffstat (limited to 'gdb/testsuite/gdb.cp/gdb2495.exp')
-rw-r--r--gdb/testsuite/gdb.cp/gdb2495.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.cp/gdb2495.exp b/gdb/testsuite/gdb.cp/gdb2495.exp
index 7fe2b12..f80c30c 100644
--- a/gdb/testsuite/gdb.cp/gdb2495.exp
+++ b/gdb/testsuite/gdb.cp/gdb2495.exp
@@ -121,7 +121,7 @@ if ![runto_main] then {
# behaviour; it should not. Test both on and off states.
# Turn on unwind on signal behaviour.
-gdb_test_multiple "set unwindonsignal on" "Turn unwindonsignal on" {
+gdb_test_multiple "set unwindonsignal on" "turn unwindonsignal on" {
-re "$gdb_prompt $" {pass "set unwindonsignal on"}
timeout {fail "(timeout) set unwindonsignal on"}
}
@@ -137,7 +137,7 @@ gdb_test "p exceptions.raise_signal(1)" \
"To change this behavior use \"set unwindonsignal off\".*"
# And reverse - turn off again.
-gdb_test_multiple "set unwindonsignal off" "Turn unwindonsignal off" {
+gdb_test_multiple "set unwindonsignal off" "turn unwindonsignal off" {
-re "$gdb_prompt $" {pass "set unwindonsignal off"}
timeout {fail "(timeout) set unwindonsignal off"}
}