diff options
author | Roland McGrath <roland@gnu.org> | 2012-11-27 17:26:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2012-11-27 17:26:11 +0000 |
commit | 659518555272d23be5bc8a4950ad565d95b7b6a0 (patch) | |
tree | 0150a8c08be2616c8b14de01a52edbba368decce /ld/testsuite/lib | |
parent | 2a64e9e88d146e56fceb399d9a245e62078025c7 (diff) | |
download | gdb-659518555272d23be5bc8a4950ad565d95b7b6a0.zip gdb-659518555272d23be5bc8a4950ad565d95b7b6a0.tar.gz gdb-659518555272d23be5bc8a4950ad565d95b7b6a0.tar.bz2 |
binutils/testsuite/
* lib/binutils-common.exp (is_zlib_supported): New function.
* lib/utils-lib.exp (run_dump_test): If as options include
--compress-debug-sections and zlib is not available, report
the test as unsupported.
* binutils-all/compress.exp: Bail out if zlib is not available.
* binutils-all/objdump.exp (objdump compressed debug):
Mark unsupported if zlib is not available.
* binutils-all/readelf.exp (readelf_compressed_wa_test): Likewise.
gas/testsuite/
* lib/gas-defs.exp (run_dump_test): If as options include
--compress-debug-sections and zlib is not available, report
the test as unsupported.
ld/testsuite/
* ld-elf/compress.exp: Bail out if zlib is not supported.
* lib/ld-lib.exp (run_dump_test): If as options include
--compress-debug-sections and zlib is not available, report
the test as unsupported.
Diffstat (limited to 'ld/testsuite/lib')
-rw-r--r-- | ld/testsuite/lib/ld-lib.exp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp index 49837dd..3cb8ee1 100644 --- a/ld/testsuite/lib/ld-lib.exp +++ b/ld/testsuite/lib/ld-lib.exp @@ -757,6 +757,12 @@ proc run_dump_test { name {extra_options {}} } { set dfile $srcdir/$subdir/$opts(dump) } + if { [string match "*--compress-debug-sections*" $opts(as)] \ + && ![is_zlib_supported] } { + unsupported $testname + return + } + # Time to setup xfailures. foreach targ $opts(xfail) { setup_xfail $targ |