From: Simon Marchi Date: Tue, 31 Jan 2023 16:34:38 +0000 (-0500) Subject: gdb/testsuite: fix xfail in gdb.ada/ptype_tagged_param.exp X-Git-Tag: binutils-2_41~2004 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8e88d10d8687d61ddb09fc0a0af563c43071555;p=thirdparty%2Fbinutils-gdb.git gdb/testsuite: fix xfail in gdb.ada/ptype_tagged_param.exp I see: ERROR: wrong # args: should be "xfail message" while executing "xfail "no debug info" $gdb_test_name" ("uplevel" body line 3) invoked from within "uplevel { if {!$has_runtime_debug_info} { xfail "no debug info" $gdb_test_name } else { fail $gdb_test_name } }" This is because the xfail takes only one argument, fix that. Change-Id: I2e304d4fd3aa61067c04b5dac2be2ed34dab3190 --- diff --git a/gdb/testsuite/gdb.ada/ptype_tagged_param.exp b/gdb/testsuite/gdb.ada/ptype_tagged_param.exp index da9b2bb3ae6..ba21e7b8e3c 100644 --- a/gdb/testsuite/gdb.ada/ptype_tagged_param.exp +++ b/gdb/testsuite/gdb.ada/ptype_tagged_param.exp @@ -49,7 +49,7 @@ gdb_test_multiple "ptype s" "ptype s" { } -re -wrap $nodebug { if {!$has_runtime_debug_info} { - xfail "no debug info" $gdb_test_name + xfail "$gdb_test_name (no debug info)" } else { fail $gdb_test_name }