Browse Source

* binutils-all/objcopy.exp (strip_test): Adjust for "no symbols" on

stdout.
	(strip_executable): Likewise.
drow-cplus-branch
Alan Modra 24 years ago
parent
commit
84938e2e33
  1. 6
      binutils/testsuite/ChangeLog
  2. 4
      binutils/testsuite/binutils-all/objcopy.exp

6
binutils/testsuite/ChangeLog

@ -1,3 +1,9 @@
2002-08-26 Alan Modra <amodra@bigpond.net.au>
* binutils-all/objcopy.exp (strip_test): Adjust for "no symbols" on
stdout.
(strip_executable): Likewise.
2002-08-13 Alan Modra <amodra@bigpond.net.au>
* binutils-all/objdump.exp (cpus_expected): Add fr500, ip2022,

4
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 "*: no symbols*" $exec_output] {
if ![string match "" $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 "*: no symbols*" $exec_output] {
if ![string match "" $exec_output] {
fail $test
return
}

Loading…
Cancel
Save