diff options
Diffstat (limited to 'testsuite/dwz.tests/objcopy-remove-debug-abbrev.sh')
-rw-r--r-- | testsuite/dwz.tests/objcopy-remove-debug-abbrev.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/dwz.tests/objcopy-remove-debug-abbrev.sh b/testsuite/dwz.tests/objcopy-remove-debug-abbrev.sh new file mode 100644 index 0000000..98ab12c --- /dev/null +++ b/testsuite/dwz.tests/objcopy-remove-debug-abbrev.sh @@ -0,0 +1,18 @@ +objcopy --remove-section=.debug_abbrev $execs/hello 1 + +cp 1 1.saved + +if dwz 1 2>dwz.err; status=$?; then + true +fi + +if ! grep -q "\.debug_abbrev not present" dwz.err; then + cat dwz.err + exit 1 +fi + +[ $status -eq 1 ] + +cmp 1 1.saved + +rm -f 1 1.saved dwz.err |