1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/elf/common-ref.sh

43 lines
625 B
Bash
Raw Normal View History

#!/bin/bash
export LANG=
set -e
CC="${CC:-cc}"
CXX="${CXX:-c++}"
2022-01-24 04:21:08 +03:00
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
mold="$(pwd)/mold"
2022-01-07 12:06:53 +03:00
t=out/test/elf/$testname
mkdir -p $t
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -fcommon -xc -c -o $t/a.o -
#include <stdio.h>
int bar;
int main() {
printf("%d\n", bar);
}
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -fcommon -xc -c -o $t/b.o -
int foo;
EOF
2022-01-07 12:06:53 +03:00
rm -f $t/c.a
ar rcs $t/c.a $t/b.o
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -fcommon -xc -c -o $t/d.o -
int foo;
int bar = 5;
int get_foo() { return foo; }
EOF
2022-01-07 12:06:53 +03:00
rm -f $t/e.a
ar rcs $t/e.a $t/d.o
2022-01-07 12:06:53 +03:00
$CC -B. -o $t/exe $t/a.o $t/c.a $t/e.a
$t/exe | grep -q 5
echo OK