c7b04ac477
* Uses xxHash hashing algorithm. A 8% ~ 14% speedup. * Set endianity of multifile using -e, --multifile-endian. * Set pointer size of multifile using -p, --multifile-pointer-size * Process files in parallel using -j N --jobs N. The default is processors / 2. Disabled when multifile is used. * Prints abbrev or DIE offset for Unknown DWARF error messages. * All testcases have been updated to work against the binutils 2.39. - Remove upstreamed patches: * dwz-fix-another-reference-from-pu-to-cu-for-odr.patch * dwz-handle-reordered-dup-chains-in-create-import-tree.patch * dwz-testsuite-fix-pr27463.sh-on-riscv64.patch * dwz-use-grep-E-instead-of-egrep.patch - Rebased patches: * dwz-remove-odr-struct-multifile.sh.patch * dwz-enable-odr-by-default.patch OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/dwz?expand=0&rev=44
68 lines
1.7 KiB
Diff
68 lines
1.7 KiB
Diff
diff --git a/testsuite/dwz.tests/odr-struct-multifile.sh b/testsuite/dwz.tests/odr-struct-multifile.sh
|
|
deleted file mode 100755
|
|
index 5961abf..0000000
|
|
--- a/testsuite/dwz.tests/odr-struct-multifile.sh
|
|
+++ /dev/null
|
|
@@ -1,61 +0,0 @@
|
|
-if ! $execs/dwz-for-test --odr -v 2>/dev/null; then
|
|
- exit 77
|
|
-fi
|
|
-
|
|
-readelf_flags=""
|
|
-if readelf -h 2>&1 | grep -q "\-wN"; then
|
|
- readelf_flags=-wN
|
|
-fi
|
|
-
|
|
-cp $execs/odr-struct 1
|
|
-cp 1 2
|
|
-
|
|
-for name in aaa bbb ccc; do
|
|
- cnt=$(readelf -wi 1 | grep -c "DW_AT_name.*:.*$name" || true)
|
|
- [ $cnt -eq 2 ]
|
|
-done
|
|
-
|
|
-for name in member_one member_two member_three member_four; do
|
|
- cnt=$(readelf -wi 1 | grep -c "DW_AT_name.*:.*$name" || true)
|
|
- case $name in
|
|
- member_one|member_two)
|
|
- [ $cnt -eq 2 ]
|
|
- ;;
|
|
- member_three|member_four)
|
|
- [ $cnt -eq 1 ]
|
|
- ;;
|
|
- esac
|
|
-done
|
|
-
|
|
-decl_cnt=$(readelf -wi 1 | grep -c "DW_AT_declaration" || true)
|
|
-
|
|
-$execs/dwz-for-test --odr 1 2 -m 3
|
|
-
|
|
-verify-dwarf.sh 1
|
|
-verify-dwarf.sh 3
|
|
-
|
|
-for name in aaa bbb ccc; do
|
|
- cnt=$(readelf -wi 3 | grep -c "DW_AT_name.*:.*$name" || true)
|
|
- [ $cnt -eq 1 ]
|
|
-done
|
|
-
|
|
-for name in member_one member_two member_three member_four; do
|
|
- cnt=$(readelf -wi 3 | grep -c "DW_AT_name.*:.*$name" || true)
|
|
- [ $cnt -eq 1 ]
|
|
-done
|
|
-
|
|
-# Even with -wN readelf 2.38-15.fc37 follows and prints the contents
|
|
-# of the alt file. So make sure it cannot do that by removing it.
|
|
-rm 3
|
|
-
|
|
-for name in aaa bbb ccc; do
|
|
- cnt=$(readelf -wi $readelf_flags 1 | grep -c "DW_AT_name.*:.*$name" || true)
|
|
- [ $cnt -eq 0 ]
|
|
-done
|
|
-
|
|
-for name in member_one member_two member_three member_four; do
|
|
- cnt=$(readelf -wi $readelf_flags 1 | grep -c "DW_AT_name.*:.*$name" || true)
|
|
- [ $cnt -eq 0 ]
|
|
-done
|
|
-
|
|
-rm -f 1 2 3
|