#!/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 < int foo; int bar = 5; int baz; int main() { printf("%d %d %d\n", foo, bar, baz); } EOF $CC -B. -o $t/exe $t/a.o $t/b.o $t/exe | grep -q '0 5 42' readelf --sections $t/exe > $t/log grep -q '.common .*NOBITS' $t/log echo OK