#!/bin/bash export LANG= set -e CC="${CC:-cc}" CXX="${CXX:-c++}" testname=$(basename -s .sh "$0") echo -n "Testing $testname ... " cd "$(dirname "$0")"/../.. mold="$(pwd)/mold" t="$(pwd)/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 <