gdb/testsuite/

* gdb.base/callfuncs.exp (do_function_calls): Fix
	setup_kfail_for_target for -m32 mode.
This commit is contained in:
Jan Kratochvil 2012-10-24 13:45:51 +00:00
parent 6d94c1229a
commit 6e933c51ce
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-10-24 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): Fix
setup_kfail_for_target for -m32 mode.
2012-10-23 Mark Kettenis <kettenis@gnu.org>
* gdb.base/callfuncs.exp: PR gdb/12796, gdb/12798 and gdb/12800

View File

@ -245,11 +245,15 @@ proc do_function_calls {} {
gdb_test "p t_structs_fc(struct_val1)" ".*= 3 \\+ 3 \\* I" \
"call inferior func with struct - returns float _Complex"
setup_kfail_for_target gdb/12783 "i?86-*-*"
if [is_x86_like_target] {
setup_kfail gdb/12783 "*-*-*"
}
gdb_test "p t_structs_dc(struct_val1)" ".*= 4 \\+ 4 \\* I" \
"call inferior func with struct - returns double _Complex"
setup_kfail_for_target gdb/12783 "i?86-*-*"
if [is_x86_like_target] {
setup_kfail gdb/12783 "*-*-*"
}
gdb_test "p t_structs_ldc(struct_val1)" "= 5 \\+ 5 \\* I" \
"call inferior func with struct - returns long double _Complex"
}