diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-04-06 12:19:13 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-04-06 12:19:13 -0700 |
commit | dae148f3b925ba75459caec099932e31a1ad961b (patch) | |
tree | 4d5f26530c66bea29b298d960dddd3e5633bed20 /gas | |
parent | bf890a93a7c46f63fc0595189cf2b388e9a29316 (diff) | |
download | gdb-dae148f3b925ba75459caec099932e31a1ad961b.zip gdb-dae148f3b925ba75459caec099932e31a1ad961b.tar.gz gdb-dae148f3b925ba75459caec099932e31a1ad961b.tar.bz2 |
Remove is_zlib_supported
Since zlib is always supported, there is no need for is_zlib_supported.
binutils/testsuite/
* binutils-all/compress.exp: Remove is_zlib_supported check.
* binutils-all/objdump.exp: Likewise.
* binutils-all/readelf.exp (readelf_compressed_wa_test): Likewise.
* lib/utils-lib.exp (run_dump_test): Likewise.
* lib/binutils-common.exp (is_zlib_supported): Removed.
gas/testsuite/
* lib/gas-defs.exp (run_dump_test): Remove is_zlib_supported check.
ld/testsuite/
* ld-elf/compress.exp: Remove is_zlib_supported check.
Fail if --compress-debug-sections doesn't work.
* lib/ld-lib.exp (run_dump_test): Remove is_zlib_supported check.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index e26755e..c896ec5 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-04-06 H.J. Lu <hongjiu.lu@intel.com> + + * lib/gas-defs.exp (run_dump_test): Remove is_zlib_supported check. + 2015-03-20 H.J. Lu <hongjiu.lu@intel.com> * gas/i386/i386.exp: Don't run nops-1-bdver1, nops-1-bdver2, diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp index 602ad57..7dc4807 100644 --- a/gas/testsuite/lib/gas-defs.exp +++ b/gas/testsuite/lib/gas-defs.exp @@ -615,13 +615,6 @@ proc run_dump_test { name {extra_options {}} } { } } - if { [string match "*--compress-debug-sections*" $opts(as)] \ - && ![is_zlib_supported] } { - unsupported $testname - return - } - - if { $opts(source) == "" } { set sourcefile ${file}.s } else { |