]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix test names starting with uppercase in gdb.arch/ppc64-atomic-inst.exp
authorEdjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
Tue, 21 Feb 2017 13:59:29 +0000 (10:59 -0300)
committerEdjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
Tue, 21 Feb 2017 13:59:29 +0000 (10:59 -0300)
gdb/testsuite/
2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>

* gdb.arch/ppc64-atomic-inst.exp: Fix test names starting with
uppercase.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp

index c18f1e6bbde478f521ce71a2b6dbc4b030b8417a..57c1e5e941cb78f43abd78857acbcb9fee0136a2 100644 (file)
@@ -1,3 +1,8 @@
+2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
+
+       * gdb.arch/ppc64-atomic-inst.exp: Fix test names starting with
+       uppercase.
+
 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * gdb.dwarf2/formdata16.c: New file.
index d1b3a7d1ab5c13df494901dd34d1b5d5e5afd9c7..7bfff6c828570fcc231e96cb8984ecb855a79675 100644 (file)
@@ -46,23 +46,23 @@ proc do_test { displaced } {
 
     set bp1 [gdb_get_line_number "lwarx"]
     gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \
-       "Set the breakpoint at the start of the lwarx/stwcx sequence"
+       "set the breakpoint at the start of the lwarx/stwcx sequence"
 
     set bp2 [gdb_get_line_number "ldarx"]
     gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \
-       "Set the breakpoint at the start of the ldarx/stdcx sequence"
+       "set the breakpoint at the start of the ldarx/stdcx sequence"
 
     gdb_test continue "Continuing.*Breakpoint $decimal.*" \
-       "Continue until lwarx/stwcx start breakpoint"
+       "continue until lwarx/stwcx start breakpoint"
 
     gdb_test nexti "bne.*1b" \
-       "Step through the lwarx/stwcx sequence"
+       "step through the lwarx/stwcx sequence"
 
     gdb_test continue "Continuing.*Breakpoint $decimal.*" \
-       "Continue until ldarx/stdcx start breakpoint"
+       "continue until ldarx/stdcx start breakpoint"
 
     gdb_test nexti "bne.*1b" \
-       "Step through the ldarx/stdcx sequence"
+       "step through the ldarx/stdcx sequence"
 }
 
 foreach displaced { "off" "on" } {