#!/bin/bash export LC_ALL=C set -e CC="${CC:-cc}" CXX="${CXX:-c++}" testname=$(basename "$0" .sh) echo -n "Testing $testname ... " cd "$(dirname "$0")"/../.. mold="$(pwd)/mold" t=out/test/elf/$testname mkdir -p $t cat < $t/log fgrep -q 'NOTYPE GLOBAL DEFAULT 6 bar' $t/log fgrep -q 'NOTYPE GLOBAL DEFAULT 6 _start' $t/log echo OK