diff options
author | Tom Tromey <tromey@redhat.com> | 2010-05-25 21:02:00 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-05-25 21:02:00 +0000 |
commit | bbc8b9587bab7500d8be7394a4f86528c11eb884 (patch) | |
tree | 70fb01d028cef6c1a947e943bfbf42948abde85f /gdb/testsuite/gdb.base/callfuncs.exp | |
parent | 83d1babf22823227d7cf530d1551afc2f7cb8160 (diff) | |
download | gdb-bbc8b9587bab7500d8be7394a4f86528c11eb884.zip gdb-bbc8b9587bab7500d8be7394a4f86528c11eb884.tar.gz gdb-bbc8b9587bab7500d8be7394a4f86528c11eb884.tar.bz2 |
* gdb.arch/i386-prologue.exp (skip_breakpoint): Fix setup_kfail
argument order.
* gdb.base/macscp.exp: Fix setup_kfail argument order.
* gdb.base/long_long.exp (gdb_test_xxx): Fix setup_kfail argument
order.
* gdb.base/sigbpt.exp (stepi_out): Fix setup_kfail argument
order.
* gdb.base/call-sc.exp (setup_kfails): Remove.
(setup_compiler_kfails): Remove.
* gdb.base/callfuncs.exp (do_function_calls): Fix setup_kfail
argument order.
* gdb.base/siginfo.exp: Fix setup_kfail argument order.
* gdb.base/sigstep.exp (advance): Fix setup_kfail argument order.
(advancei): Fix setup_kfail argument order.
* gdb.base/radix.exp: Fix setup_kfail argument order.
* gdb.base/solib-weak.exp (do_test): Fix setup_kfail argument
order.
* gdb.base/structs.exp (setup_kfails): Remove.
(setup_compiler_kfails): Fix setup_kfail argument order.
* gdb.base/sigaltstack.exp (finish_test): Fix setup_kfail argument
order.
* gdb.java/jmain.exp: Fix setup_kfail argument order.
* gdb.pascal/types.exp (test_string_literal_types_accepted): Fix
setup_kfail argument order.
* gdb.cp/overload.exp: Fix setup_kfail argument order.
Diffstat (limited to 'gdb/testsuite/gdb.base/callfuncs.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/callfuncs.exp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/testsuite/gdb.base/callfuncs.exp b/gdb/testsuite/gdb.base/callfuncs.exp index d660051..b6bd885 100644 --- a/gdb/testsuite/gdb.base/callfuncs.exp +++ b/gdb/testsuite/gdb.base/callfuncs.exp @@ -190,17 +190,17 @@ proc do_function_calls {} { # function body. This results in the called function treating the # first few instructions of the function proper as a descriptor # and attempting a jump through that (a totally random address). - setup_kfail "rs6000*-*-aix*" gdb/1457 - setup_kfail "powerpc*-*-aix*" gdb/1457 - setup_kfail hppa*-*-hpux* gdb/1457 + setup_kfail gdb/1457 "rs6000*-*-aix*" + setup_kfail gdb/1457 "powerpc*-*-aix*" + setup_kfail gdb/1457 hppa*-*-hpux* gdb_test "p t_func_values(add,func_val2)" " = 1" - setup_kfail "rs6000*-*-aix*" gdb/1457 - setup_kfail "powerpc*-*-aix*" gdb/1457 - setup_kfail hppa*-*-hpux* gdb/1457 + setup_kfail gdb/1457 "rs6000*-*-aix*" + setup_kfail gdb/1457 "powerpc*-*-aix*" + setup_kfail gdb/1457 hppa*-*-hpux* gdb_test "p t_func_values(func_val1,doubleit)" " = 1" - setup_kfail "rs6000*-*-aix*" gdb/1457 - setup_kfail "powerpc*-*-aix*" gdb/1457 - setup_kfail hppa*-*-hpux* gdb/1457 + setup_kfail gdb/1457 "rs6000*-*-aix*" + setup_kfail gdb/1457 "powerpc*-*-aix*" + setup_kfail gdb/1457 hppa*-*-hpux* gdb_test "p t_call_add(add,3,4)" " = 7" gdb_test "p t_call_add(func_val1,3,4)" " = 7" |