summaryrefslogtreecommitdiffstats
path: root/testsuite/dwz.tests/low-mem-die-limit-at-limit-multifile.sh
blob: ece4fd577b5dac6fd40b0c966cdf4c449ddf8b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cp $execs/hello 1
cp 1 2

count=$(readelf -wi 1 \
	    | grep '(DW_TAG' \
	    | wc -l)
limit=$count

if $execs/dwz-for-test \
       -l$limit \
       --devel-trace \
       -m 3 1 2 \
       2> dwz.err; status=$?; then
    true
fi

if grep -q "Hit low-mem die-limit" dwz.err; then
    exit 1
fi

[ $status -eq 0 ]

rm -f 1 2 3 dwz.err