diff options
Diffstat (limited to 'gdb/testsuite/gdb.cell/break.exp')
-rw-r--r-- | gdb/testsuite/gdb.cell/break.exp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/testsuite/gdb.cell/break.exp b/gdb/testsuite/gdb.cell/break.exp index 6052479..66ed698 100644 --- a/gdb/testsuite/gdb.cell/break.exp +++ b/gdb/testsuite/gdb.cell/break.exp @@ -34,16 +34,16 @@ if {[skip_cell_tests]} { # Compile SPU binary. if { [gdb_compile_cell_spu $spu_src $spu_bin executable {debug}] != "" } { - unsupported "Compiling spu binary failed." + unsupported "compiling spu binary failed." return -1 } # Compile PPU binary. if { [gdb_cell_embedspu $spu_bin $spu_bin-embed.o {debug}] != "" } { - unsupported "Embedding spu binary failed." + unsupported "embedding spu binary failed." return -1 } if { [gdb_compile_cell_ppu [list $ppu_src $spu_bin-embed.o] $ppu_bin executable {debug}] != "" } { - unsupported "Compiling ppu binary failed." + unsupported "compiling ppu binary failed." return -1 } @@ -67,7 +67,7 @@ gdb_test "break main" \ "breakpoint main in ppu" if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } @@ -84,7 +84,7 @@ gdb_expect { -re ".*$spu_file.c.*Make breakpoint pending.*y or \\\[n\\\]. $" { gdb_test "y" "Breakpoint.*$spu_file.*pending." "set pending breakpoint" } - timeout { fail "Timeout while setting breakpoint in spu binary" } + timeout { fail "timeout while setting breakpoint in spu binary" } } # Check breakpoints. |