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

49 lines
896 B
Bash
Raw Normal View History

2020-12-13 12:46:07 +03:00
#!/bin/bash
export LANG=
2020-12-13 12:46:07 +03:00
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
2020-12-13 12:46:07 +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:46:07 +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:46:07 +03:00
int five() { return 5; }
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/c.o -c -xc -
int seven() { return 7; }
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -o $t/d.o -c -xc -
2020-12-13 12:46:07 +03:00
#include <stdio.h>
int three();
int five();
int seven();
2020-12-13 12:46:07 +03:00
int main() {
printf("%d\n", three() + five() + seven());
2020-12-13 12:46:07 +03:00
}
EOF
2022-01-07 12:06:53 +03:00
rm -f $t/d.a
(cd $t; ar rcsT d.a long-long-long-filename.o b.o "`pwd`"/c.o)
2020-12-13 12:46:07 +03:00
2022-01-07 12:06:53 +03:00
$CC -B. -Wl,--trace -o $t/exe $t/d.o $t/d.a > $t/log
2020-12-13 12:46:07 +03:00
2022-01-24 04:21:08 +03:00
grep -Eq 'thin-archive/d.a\(.*long-long-long-filename.o\)' $t/log
grep -Eq 'thin-archive/d.a\(.*/b.o\)' $t/log
2022-01-07 12:06:53 +03:00
fgrep -q thin-archive/d.o $t/log
2020-12-13 12:46:07 +03:00
2022-01-07 12:06:53 +03:00
$t/exe | grep -q 15
2020-12-13 12:46:07 +03:00
2021-01-25 05:02:01 +03:00
echo OK