gdb/testsuite/

* gdb.base/valgrind-db-attach.exp: Use unsupported instead of xfail.
	Recognize "command not found".
This commit is contained in:
Daniel Jacobowitz 2010-02-16 21:22:46 +00:00
parent bb3912236d
commit 67bdab6cc5
2 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.base/valgrind-db-attach.exp: Use unsupported instead of xfail.
Recognize "command not found".
2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.arch/thumb2-it.exp (test_it_break): Handle hardware

View file

@ -34,8 +34,7 @@ set cmd "valgrind --db-attach=yes $db_command $binfile"
set res [remote_spawn host $cmd];
if { $res < 0 || $res == "" } {
verbose -log "Spawning $cmd failed."
setup_xfail *-*-*
fail $test
unsupported $test
return -1
}
pass $test
@ -49,8 +48,13 @@ gdb_test_multiple "" $test {
pass $test
}
-re "valgrind: failed to start tool 'memcheck' for platform '.*': No such file or directory" {
setup_xfail *-*-*
fail $test
unsupported $test
return -1
}
-re "command not found" {
# The spawn succeeded, but then valgrind was not found - e.g. if
# we spawned SSH to a remote system.
unsupported $test
return -1
}
}