#!/bin/bash set -e cd $(dirname $0) echo -n "Testing $(basename -s .sh $0) ... " t=$(pwd)/tmp/$(basename -s .sh $0) mkdir -p $t cat < $t/log fgrep -q _start $t/log fgrep -q foo $t/log fgrep -q .Lbar $t/log ../mold -o $t/exe $t/a.o --discard-locals readelf --symbols $t/exe > $t/log fgrep -q _start $t/log fgrep -q foo $t/log ! fgrep -q .Lbar $t/log || false ../mold -o $t/exe $t/a.o --discard-all readelf --symbols $t/exe > $t/log fgrep -q _start $t/log ! fgrep -q foo $t/log || false ! fgrep -q .Lbar $t/log || false ../mold -o $t/exe $t/a.o --strip-all readelf --symbols $t/exe > $t/log ! fgrep -q _start $t/log || false ! fgrep -q foo $t/log || false ! fgrep -q .Lbar $t/log || false echo OK