summaryrefslogtreecommitdiffstats
path: root/testsuite/dwz.tests/low-mem-die-limit-one-below.sh
blob: 4136336965a62fb67f6fc198166cf2c14d31596f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cp $execs/hello 1

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

$execs/dwz-for-test \
    -l$limit \
    --devel-trace \
    1 \
    2> dwz.err

if ! grep -q "Compressing 1 in low-mem mode" dwz.err; then
    exit 1
fi

rm -f 1 dwz.err