diff options
author | Alan Modra <amodra@gmail.com> | 2002-08-26 23:15:48 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-08-26 23:15:48 +0000 |
commit | 68a4c07345e6cf85d8b6fbe0d846028ed48f0dba (patch) | |
tree | 3cceca06530f3a03669b68a957c30f08d65fab03 /binutils/testsuite | |
parent | 55970da69c7cafed0c307890835bce67a8a41434 (diff) | |
download | gdb-68a4c07345e6cf85d8b6fbe0d846028ed48f0dba.zip gdb-68a4c07345e6cf85d8b6fbe0d846028ed48f0dba.tar.gz gdb-68a4c07345e6cf85d8b6fbe0d846028ed48f0dba.tar.bz2 |
Revert last change.
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/objcopy.exp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index aa768cb..7034c1f 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-08-27 Alan Modra <amodra@bigpond.net.au> + + * binutils-all/objcopy.exp: Revert last change. + 2002-08-26 Alan Modra <amodra@bigpond.net.au> * binutils-all/objcopy.exp (strip_test): Adjust for "no symbols" on diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp index ad92c0d..e36f14e 100644 --- a/binutils/testsuite/binutils-all/objcopy.exp +++ b/binutils/testsuite/binutils-all/objcopy.exp @@ -371,7 +371,7 @@ proc strip_test { } { } set exec_output [binutils_run $NM "-a $NMFLAGS $objfile"] - if ![string match "" $exec_output] { + if ![string match "*: no symbols*" $exec_output] { fail $test return } @@ -558,7 +558,7 @@ proc strip_executable { prog flags test } { } set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"] - if ![string match "" $exec_output] { + if ![string match "*: no symbols*" $exec_output] { fail $test return } |