diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-shared.exp')
-rw-r--r-- | gdb/testsuite/gdb.python/py-shared.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.python/py-shared.exp b/gdb/testsuite/gdb.python/py-shared.exp index 4a0c738..3e049b3 100644 --- a/gdb/testsuite/gdb.python/py-shared.exp +++ b/gdb/testsuite/gdb.python/py-shared.exp @@ -28,14 +28,14 @@ set libsrc ${libfile}.c set library [standard_output_file ${libfile}.sl] if { [gdb_compile_shlib ${srcdir}/${subdir}/${libsrc} ${library} "debug"] != "" } { - untested "Could not compile shared library." + untested "could not compile shared library." return -1 } set exec_opts [list debug shlib=${library}] if { [gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile} executable $exec_opts] != "" } { - untested "Could not compile $binfile." + untested "could not compile $binfile." return -1 } @@ -49,7 +49,7 @@ if { [skip_python_tests] } { continue } # The following tests require execution. if ![runto_main] then { - fail "Can't run to main" + fail "can't run to main" return 0 } |