#!/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 # Verify that mold does not crash if no object file is included # in the output. The resulting executable doesn't contain any # meaningful code or data, so this is an edge case, though. cat <