diff options
Diffstat (limited to 'gdb/testsuite/gdb.cell')
-rw-r--r-- | gdb/testsuite/gdb.cell/arch.exp | 14 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/break.exp | 10 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/bt.exp | 12 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/core.exp | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/data.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/dwarfaddr.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/ea-cache.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/ea-standalone.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/ea-test.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/f-regs.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/fork.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/gcore.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/mem-access.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/ptype.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/registers.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/sizeof.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/solib-symbol.exp | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cell/solib.exp | 8 |
18 files changed, 71 insertions, 71 deletions
diff --git a/gdb/testsuite/gdb.cell/arch.exp b/gdb/testsuite/gdb.cell/arch.exp index 56d2c731d46..f328ab66744 100644 --- a/gdb/testsuite/gdb.cell/arch.exp +++ b/gdb/testsuite/gdb.cell/arch.exp @@ -33,16 +33,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 } @@ -61,7 +61,7 @@ gdb_test "show architecture" \ "startup architecture is powerpc:common" if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } @@ -78,15 +78,15 @@ check_spu_arch "" send_gdb "thread\n" gdb_expect 10 { -re "Current thread is (\[0-9\]*) .*\r\n$gdb_prompt $" { - pass "Retrieve current thread" + pass "retrieve current thread" set thread_id $expect_out(1,string) } -re "$gdb_prompt $" { - fail "Retrieve current thread" + fail "retrieve current thread" return 0 } timeout { - fail "Retrieve current thread (timed out)" + fail "retrieve current thread (timed out)" return 0 } } diff --git a/gdb/testsuite/gdb.cell/break.exp b/gdb/testsuite/gdb.cell/break.exp index 60524793869..66ed6987f06 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. diff --git a/gdb/testsuite/gdb.cell/bt.exp b/gdb/testsuite/gdb.cell/bt.exp index cd5d843e883..ba4e2cf6674 100644 --- a/gdb/testsuite/gdb.cell/bt.exp +++ b/gdb/testsuite/gdb.cell/bt.exp @@ -37,24 +37,24 @@ if {[skip_cell_tests]} { # Compile SPU binaries. if { [gdb_compile_cell_spu $spu_src $spu_bin executable {debug}] != "" } { - unsupported "Compiling spu binary failed." + unsupported "compiling spu binary failed." return -1 } if { [gdb_compile_cell_spu $spu2_src $spu2_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_cell_embedspu $spu2_bin $spu2_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 $spu2_bin-embed.o] $ppu_bin executable {debug}] != "" } { - unsupported "Compiling ppu binary failed." + unsupported "compiling ppu binary failed." return -1 } @@ -68,7 +68,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/core.exp b/gdb/testsuite/gdb.cell/core.exp index 4cd9c7f33e8..68d98bdf5d3 100644 --- a/gdb/testsuite/gdb.cell/core.exp +++ b/gdb/testsuite/gdb.cell/core.exp @@ -38,16 +38,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 } diff --git a/gdb/testsuite/gdb.cell/data.exp b/gdb/testsuite/gdb.cell/data.exp index e373ba4efb7..9da96ab5400 100644 --- a/gdb/testsuite/gdb.cell/data.exp +++ b/gdb/testsuite/gdb.cell/data.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 } @@ -74,7 +74,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/dwarfaddr.exp b/gdb/testsuite/gdb.cell/dwarfaddr.exp index a7331469d81..37a819214dd 100644 --- a/gdb/testsuite/gdb.cell/dwarfaddr.exp +++ b/gdb/testsuite/gdb.cell/dwarfaddr.exp @@ -30,7 +30,7 @@ if {[skip_cell_tests]} { # Compile SPU binary. if { [gdb_compile_cell_spu $srcfile $binary executable {debug}] != "" } { - unsupported "Compiling spu binary failed." + unsupported "compiling spu binary failed." return -1 } @@ -40,7 +40,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binary} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/ea-cache.exp b/gdb/testsuite/gdb.cell/ea-cache.exp index c567f38a210..a6b2595a476 100644 --- a/gdb/testsuite/gdb.cell/ea-cache.exp +++ b/gdb/testsuite/gdb.cell/ea-cache.exp @@ -33,16 +33,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 } @@ -56,7 +56,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/ea-standalone.exp b/gdb/testsuite/gdb.cell/ea-standalone.exp index 5079f366d22..9f8f81c469b 100644 --- a/gdb/testsuite/gdb.cell/ea-standalone.exp +++ b/gdb/testsuite/gdb.cell/ea-standalone.exp @@ -30,7 +30,7 @@ if {[skip_cell_tests]} { # Compile SPU binary. if { [gdb_compile_cell_spu $srcfile $binary executable {debug}] != "" } { - unsupported "Compile spu binary failed, so all tests in this file will automatically fail." + unsupported "compile spu binary failed, so all tests in this file will automatically fail." return -1 } @@ -40,7 +40,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binary} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/ea-test.exp b/gdb/testsuite/gdb.cell/ea-test.exp index 6a5afd27635..57ed9e2d015 100644 --- a/gdb/testsuite/gdb.cell/ea-test.exp +++ b/gdb/testsuite/gdb.cell/ea-test.exp @@ -30,7 +30,7 @@ if {[skip_cell_tests]} { # Compile SPU binary. if { [gdb_compile_cell_spu $source $binary executable {debug}] != "" } { - unsupported "Compile spu binary failed, so all tests in this file will automatically fail." + unsupported "compile spu binary failed, so all tests in this file will automatically fail." return -1 } @@ -40,7 +40,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binary} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/f-regs.exp b/gdb/testsuite/gdb.cell/f-regs.exp index 6e211a649f9..512f2d9be9e 100644 --- a/gdb/testsuite/gdb.cell/f-regs.exp +++ b/gdb/testsuite/gdb.cell/f-regs.exp @@ -33,16 +33,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 } @@ -74,7 +74,7 @@ gdb_test "info all-registers" \ "info all-registers" if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/fork.exp b/gdb/testsuite/gdb.cell/fork.exp index 8437ab9279c..9e72f548164 100644 --- a/gdb/testsuite/gdb.cell/fork.exp +++ b/gdb/testsuite/gdb.cell/fork.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 } @@ -57,7 +57,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/gcore.exp b/gdb/testsuite/gdb.cell/gcore.exp index ca1d20a26e4..ad8e4d6c97e 100644 --- a/gdb/testsuite/gdb.cell/gcore.exp +++ b/gdb/testsuite/gdb.cell/gcore.exp @@ -38,16 +38,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 } @@ -61,7 +61,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/mem-access.exp b/gdb/testsuite/gdb.cell/mem-access.exp index 4ba5e48c671..623d1666483 100644 --- a/gdb/testsuite/gdb.cell/mem-access.exp +++ b/gdb/testsuite/gdb.cell/mem-access.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 } @@ -146,7 +146,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/ptype.exp b/gdb/testsuite/gdb.cell/ptype.exp index 291c7c4cb57..82c381cc119 100644 --- a/gdb/testsuite/gdb.cell/ptype.exp +++ b/gdb/testsuite/gdb.cell/ptype.exp @@ -33,16 +33,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 } @@ -56,7 +56,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/registers.exp b/gdb/testsuite/gdb.cell/registers.exp index 15b5dbfafa2..ced627a865d 100644 --- a/gdb/testsuite/gdb.cell/registers.exp +++ b/gdb/testsuite/gdb.cell/registers.exp @@ -33,16 +33,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 } @@ -61,7 +61,7 @@ gdb_test "info all-registers" \ "info all-registers" if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/sizeof.exp b/gdb/testsuite/gdb.cell/sizeof.exp index c5769144562..721cd4d6b70 100644 --- a/gdb/testsuite/gdb.cell/sizeof.exp +++ b/gdb/testsuite/gdb.cell/sizeof.exp @@ -33,16 +33,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 } @@ -88,7 +88,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/solib-symbol.exp b/gdb/testsuite/gdb.cell/solib-symbol.exp index 21070bc1751..253a20d8bee 100644 --- a/gdb/testsuite/gdb.cell/solib-symbol.exp +++ b/gdb/testsuite/gdb.cell/solib-symbol.exp @@ -33,16 +33,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 } @@ -57,7 +57,7 @@ gdb_reinitialize_dir $srcdir/$subdir gdb_load ${ppu_bin} if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } diff --git a/gdb/testsuite/gdb.cell/solib.exp b/gdb/testsuite/gdb.cell/solib.exp index 05fcd9bd7ef..ad43b03f3de 100644 --- a/gdb/testsuite/gdb.cell/solib.exp +++ b/gdb/testsuite/gdb.cell/solib.exp @@ -33,16 +33,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 } @@ -62,7 +62,7 @@ gdb_test "info sharedlibrary" \ "no shared library is loaded" if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } |