1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-05 00:57:08 +03:00
mold/test/elf/static-archive.sh

44 lines
795 B
Bash
Raw Normal View History

2020-12-13 12:26:23 +03:00
#!/bin/bash
export LANG=
2020-12-13 12:26:23 +03:00
set -e
CC="${CC:-cc}"
CXX="${CXX:-c++}"
testname=$(basename -s .sh "$0")
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
2020-12-13 12:26:23 +03:00
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/long-long-long-filename.o -c -xc -
2020-12-13 12:26:23 +03:00
int three() { return 3; }
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/b.o -c -xc -
2020-12-13 12:26:23 +03:00
int five() { return 5; }
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/c.o -c -xc -
2020-12-13 12:26:23 +03:00
#include <stdio.h>
int three();
int five();
int main() {
printf("%d\n", three() + five());
}
EOF
2022-01-07 12:06:53 +03:00
rm -f $t/d.a
(cd $t; ar rcs d.a long-long-long-filename.o b.o)
2020-12-13 12:26:23 +03:00
2022-01-07 12:06:53 +03:00
$CC -B. -Wl,--trace -o $t/exe $t/c.o $t/d.a > $t/log
2020-12-13 12:26:23 +03:00
2022-01-07 12:06:53 +03:00
fgrep -q 'static-archive/d.a(long-long-long-filename.o)' $t/log
fgrep -q 'static-archive/d.a(b.o)' $t/log
fgrep -q static-archive/c.o $t/log
2020-12-13 12:26:23 +03:00
2022-01-07 12:06:53 +03:00
$t/exe | grep -q '8'
2020-12-13 12:26:23 +03:00
2021-01-25 05:02:01 +03:00
echo OK