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.compile/compile.exp | |
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.compile/compile.exp')
-rw-r--r-- | gdb/testsuite/gdb.compile/compile.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.compile/compile.exp b/gdb/testsuite/gdb.compile/compile.exp index cec44d8..93d5873 100644 --- a/gdb/testsuite/gdb.compile/compile.exp +++ b/gdb/testsuite/gdb.compile/compile.exp @@ -66,16 +66,16 @@ if {[skip_compile_feature_tests]} { # gdb_test_no_output "compile -- f = 10" \ - "Test abbreviations and code delimiter" + "test abbreviations and code delimiter" gdb_test "compile f = 10;" ".*= 10;: No such file.*" \ "Test abbreviations and code collision" gdb_test_no_output "compile -r -- void _gdb_expr(){int i = 5;}" \ - "Test delimiter with -r" + "test delimiter with -r" gdb_test_no_output "compile -raw -- void _gdb_expr(){int i = 5;}" \ - "Test delimiter with -raw" + "test delimiter with -raw" gdb_test "compile -- -r void _gdb_expr(){int i = 5;}" \ ".* error: 'r' undeclared \\(first use in this function\\).*" \ |