diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-04-06 08:59:15 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-04-06 09:02:52 -0700 |
commit | fd5136e57ca26072fa015a7563ba019b1b2b7d73 (patch) | |
tree | 160fb04cd3aafbd90f71f716f0968f5448524966 /binutils/testsuite | |
parent | 85317fbbca85af8786ba3ce0523a1b85b4457f09 (diff) | |
download | gdb-fd5136e57ca26072fa015a7563ba019b1b2b7d73.zip gdb-fd5136e57ca26072fa015a7563ba019b1b2b7d73.tar.gz gdb-fd5136e57ca26072fa015a7563ba019b1b2b7d73.tar.bz2 |
Remove "/dev/null" from remote_exec
We should catch all errors/warnings from cmp.
* binutils-all/compress.exp (compression_used): Remove "/dev/null"
from remote_exec.
Diffstat (limited to 'binutils/testsuite')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/compress.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index ff77d51..65a22d8 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-04-06 H.J. Lu <hongjiu.lu@intel.com> + + * binutils-all/compress.exp (compression_used): Remove "/dev/null" + from remote_exec. + 2015-04-05 H.J. Lu <hongjiu.lu@intel.com> * binutils-all/compress.exp (compression_used): New. diff --git a/binutils/testsuite/binutils-all/compress.exp b/binutils/testsuite/binutils-all/compress.exp index f170aea..b4a9468 100644 --- a/binutils/testsuite/binutils-all/compress.exp +++ b/binutils/testsuite/binutils-all/compress.exp @@ -39,7 +39,7 @@ if { ![binutils_assemble_flags $srcdir/$subdir/dw2-1.S ${compressedfile}.o --com return } -set got [remote_exec host "cmp ${testfile}.o ${compressedfile}.o" "" "/dev/null"] +set got [remote_exec host "cmp ${testfile}.o ${compressedfile}.o"] # Use it to set up xfail. set exec_output [lindex $got 1] if [string match "" $exec_output] then { |