diff options
author | Luis Machado <lgustavo@codesourcery.com> | 2016-12-01 14:45:32 -0600 |
---|---|---|
committer | Luis Machado <lgustavo@codesourcery.com> | 2016-12-01 14:45:32 -0600 |
commit | cd2ddb6cde55a20d191e1002dbe1977df695cda9 (patch) | |
tree | 45b05c85afdc7069bb41e6654e1d3643522f9570 /gdb/testsuite/gdb.base | |
parent | bb95117e107fe58ecd35683bf0e8da3b414378ff (diff) | |
download | gdb-cd2ddb6cde55a20d191e1002dbe1977df695cda9.zip gdb-cd2ddb6cde55a20d191e1002dbe1977df695cda9.tar.gz gdb-cd2ddb6cde55a20d191e1002dbe1977df695cda9.tar.bz2 |
Fix test names starting with uppercase using multi-line gdb_test_no_output
This fixes offender testcases that have test names starting with uppercase
when using gdb_test_no_output in a multi-line construct.
gdb/testsuite/ChangeLog
2016-12-01 Luis Machado <lgustavo@codesourcery.com>
Fix test names starting with uppercase throughout the files.
* gdb.ada/assign_1.exp
* gdb.ada/boolean_expr.exp
* gdb.base/arrayidx.exp
* gdb.base/del.exp
* gdb.base/gcore-buffer-overflow.exp
* gdb.base/testenv.exp
* gdb.compile/compile.exp
* gdb.python/py-framefilter-invalidarg.exp
* gdb.python/py-framefilter.exp
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/arrayidx.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/del.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/gcore-buffer-overflow.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/testenv.exp | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/gdb/testsuite/gdb.base/arrayidx.exp b/gdb/testsuite/gdb.base/arrayidx.exp index bfd186b..c7c707a 100644 --- a/gdb/testsuite/gdb.base/arrayidx.exp +++ b/gdb/testsuite/gdb.base/arrayidx.exp @@ -34,7 +34,7 @@ if ![runto_main] then { # First, print the array without the indexes gdb_test_no_output "set print array-indexes off" \ - "Set print array-indexes to off" + "set print array-indexes to off" gdb_test "print array" \ "\\{1, 2, 3, 4\\}" \ @@ -43,7 +43,7 @@ gdb_test "print array" \ # Second, print the same array with the indexes gdb_test_no_output "set print array-indexes on" \ - "Set print array-indexes to on" + "set print array-indexes to on" gdb_test "print array" \ "\\{\\\[0\\\] = 1, \\\[1\\\] = 2, \\\[2\\\] = 3, \\\[3\\\] = 4\\}" \ diff --git a/gdb/testsuite/gdb.base/del.exp b/gdb/testsuite/gdb.base/del.exp index e7a8c2d..2d7e920 100644 --- a/gdb/testsuite/gdb.base/del.exp +++ b/gdb/testsuite/gdb.base/del.exp @@ -33,7 +33,7 @@ proc test_delete_alias { alias } { # First of all, remove all previous breakpoints if there were any, # and then verify that we do not have any breakpoint lying around. gdb_test_no_output "delete" \ - "Remove all breakpoints ($alias)" + "remove all breakpoints ($alias)" gdb_test "info break" \ "No breakpoints or watchpoints." \ diff --git a/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp b/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp index 72f03ac..92df25f 100644 --- a/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp +++ b/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp @@ -32,7 +32,7 @@ if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb clean_restart ${binfile} gdb_test_no_output "set args ${pattern}" \ - "Set buffer exceeding arguments" + "set buffer exceeding arguments" if { ! [ runto_main ] } then { untested gcore-buffer-overflow.exp diff --git a/gdb/testsuite/gdb.base/testenv.exp b/gdb/testsuite/gdb.base/testenv.exp index 27cfe04..9d03f91 100644 --- a/gdb/testsuite/gdb.base/testenv.exp +++ b/gdb/testsuite/gdb.base/testenv.exp @@ -52,7 +52,7 @@ gdb_test "continue" \ "test no TEST_GDB var" gdb_test_no_output "set env TEST_GDB_VAR1 test1" \ - "Set TEST_GDB_VAR1" + "set TEST_GDB_VAR1" runto_main gdb_breakpoint $bp_line @@ -63,7 +63,7 @@ gdb_test "continue" \ "test with one TEST_GDB var" gdb_test_no_output "set env TEST_GDB_VAR2 test2" \ - "Set TEST_GDB_VAR2" + "set TEST_GDB_VAR2" runto_main gdb_breakpoint $bp_line @@ -74,7 +74,7 @@ gdb_test "continue" \ "test with two TEST_GDB var" gdb_test_no_output "unset env TEST_GDB_VAR1" \ - "Unset TEST_GDB_VAR1" + "unset TEST_GDB_VAR1" runto_main gdb_breakpoint $bp_line @@ -106,7 +106,7 @@ gdb_test "continue" \ "test with TEST_GDB_GLOBAL" gdb_test_no_output "unset env TEST_GDB_GLOBAL" \ - "Unset TEST_GDB_GLOBAL" + "unset TEST_GDB_GLOBAL" runto_main gdb_breakpoint $bp_line |