blob: 15ed418df53ac1b3bcf8824e7c7de89c8eee6537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
cp ../hello 1
objcopy --only-keep-debug 1 1.debug
objcopy --strip-debug 1 1.stripped
if ! eu-unstrip 1.stripped 1.debug -o 1.unstripped; then
exit 77
fi
rm 1.unstripped
cp 1.debug 2.debug
if dwz -m 3 1.debug 2.debug 2> dwz.err; status=$?; then
true
fi
rm 2.debug
if grep -q "dwz: Section overlap detected" dwz.err; then
exit 77
fi
[ $status -eq 0 ]
version=$(eu-unstrip --version | head -n 1 | cut -d ' ' -f3)
major=$(echo $version | sed 's%\..*%%')
minor=$(echo $version | sed 's%.*\.%%')
if [ $major -gt 0 ] || [ $minor -ge 168 ]; then
true
else
exit 77
fi
eu-unstrip 1.stripped 1.debug -o 1.unstripped
# An unstripped exec can end up larger than the original (PR elfutils/24809).
#smaller-than.sh 1.unstripped 1
rm -f 1 1.debug 1.stripped 1.unstripped 3 dwz.err
|