* elf64-ppc.c (dec_dynrel_count): Don't error when elf_gc_sweep_symbol
[external/binutils.git] / gdb / testsuite / gdb.base / callfuncs.exp
index daaad1a..b416383 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1992, 1994-2004, 2007-2012 Free Software Foundation, Inc.
+# Copyright 1992-2013 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -65,6 +65,10 @@ proc do_function_calls {} {
     # We need to up this because this can be really slow on some boards.
     set timeout 60;
 
+    # If any of these calls segv we don't want to affect subsequent tests.
+    # E.g., we want to ensure register values are restored.
+    gdb_test_no_output "set unwindonsignal on"
+
     gdb_test "p t_char_values(0,0)" " = 0"
     gdb_test "p t_char_values('a','b')" " = 1"
     gdb_test "p t_char_values(char_val1,char_val2)" " = 1"
@@ -145,19 +149,15 @@ proc do_function_calls {} {
     }
 
     if [support_complex_tests] {
-       setup_kfail_for_target gdb/12798 "x86_64-*-*"
        gdb_test "p t_float_complex_values(fc1, fc2)" " = 1"
        gdb_test "p t_float_complex_values(fc3, fc4)" " = 0"
 
-       setup_kfail_for_target gdb/12800 "x86_64-*-*"
        gdb_test "p t_float_complex_many_args(fc1, fc2, fc3, fc4, fc1, fc2, fc3, fc4, fc1, fc2, fc3, fc4, fc1, fc2, fc3, fc4)" " = 1"
        gdb_test "p t_float_complex_many_args(fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1)" " = 0"
 
-       setup_kfail_for_target gdb/12798 "x86_64-*-*"
        gdb_test "p t_double_complex_values(dc1, dc2)" " = 1"
        gdb_test "p t_double_complex_values(dc3, dc4)" " = 0"
 
-       setup_kfail_for_target gdb/12800 "x86_64-*-*"
        gdb_test "p t_double_complex_many_args(dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4)" " = 1"
        gdb_test "p t_double_complex_many_args(dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1)" " = 0"
 
@@ -242,23 +242,21 @@ proc do_function_calls {} {
 
     if [support_complex_tests] {
 
-       setup_kfail_for_target gdb/12796 "x86_64-*-*"
        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-*-*"
-       setup_kfail_for_target gdb/12796 "x86_64-*-*"
        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-*-*"
-       setup_kfail_for_target gdb/12796 "x86_64-*-*"
        gdb_test "p t_structs_ldc(struct_val1)" "= 5 \\+ 5 \\* I" \
            "call inferior func with struct - returns long double _Complex"
     }
 
     gdb_test "p t_structs_a(struct_val1)" "= (.unsigned char .. )?<buf.*> \"foo\"" \
        "call inferior func with struct - returns char *"
+
+    # Restore default value.
+    gdb_test_no_output "set unwindonsignal off"
 }
 
 # Procedure to get current content of all registers.