From: Jakub Jelinek Date: Tue, 30 Mar 2004 09:54:15 +0000 (+0000) Subject: * binutils-all/objcopy.exp: Accept main as a data symbol as well. X-Git-Tag: gprof-pre-ansify-2004-05-26~676 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=adacfc818440c75724a00ed3abf50319340369cc;p=platform%2Fupstream%2Fbinutils.git * binutils-all/objcopy.exp: Accept main as a data symbol as well. --- diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 6c8de84..8c4665e 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-03-30 Jakub Jelinek + + * binutils-all/objcopy.exp: Accept main as a data symbol as well. + 2004-02-27 Andreas Schwab * binutils-all/ar.exp (argument_parsing): New test. diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp index c6a2d53..e84868b 100644 --- a/binutils/testsuite/binutils-all/objcopy.exp +++ b/binutils/testsuite/binutils-all/objcopy.exp @@ -613,8 +613,8 @@ proc strip_executable_with_saving_a_symbol { prog flags test } { regsub "^\[0-9a-fA-F\]+\[ \]+T Main\[\n\r\]+" $exec_output "" exec_output } - if {![regexp {^[0-9a-fA-F]+ T main} $exec_output] \ - && ![regexp {^[0-9a-fA-F]+ T _main} $exec_output]} { + if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \ + && ![regexp {^([0-9a-fA-F]+)?[ ]+[TD] _main} $exec_output]} { fail $test return }