From: Graham Stott Date: Sun, 30 May 2004 17:51:46 +0000 (+0000) Subject: target-supports.exp (check_iconv_available): Fix fallout from 2004-05-28 patch. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0fb4f4b86ab649201b02f5ebac88b17a1ab1eb1a;p=gcc.git target-supports.exp (check_iconv_available): Fix fallout from 2004-05-28 patch. * lib/target-supports.exp (check_iconv_available): Fix fallout from 2004-05-28 patch. From-SVN: r82460 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6d0c44bf1ea..6d5e0a563eb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-05-30 Graham Stott + + * lib/target-supports.exp (check_iconv_available): Fix fallout + from 2004-05-28 patch. + 2004-05-30 Paul Brook PR fortran/15620 diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index aee7016bf87..e23a8ecda54 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -239,13 +239,13 @@ proc check_iconv_available { test_what } { set lines [${tool}_target_compile $src $exe executable "libs=$libiconv" ] file delete $src - remote_file build delete $exe if [string match "" $lines] then { # No error messages, everything is OK. - set result [${tool}_load "./tmp.x" "" ""] + set result [${tool}_load "./$exe" "" ""] set status [lindex $result 0]; + remote_file build delete $exe verbose "check_iconv_available status is <$status>" 2