2021-04-10 09:33:51 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
echo -n "Testing $(basename -s .sh $0) ... "
|
|
|
|
t=$(pwd)/tmp/$(basename -s .sh $0)
|
|
|
|
mkdir -p $t
|
|
|
|
|
|
|
|
cat <<EOF | clang -c -o $t/a.o -xc -
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
printf("Hello world\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2021-05-02 14:41:17 +03:00
|
|
|
clang -fuse-ld=`pwd`/../mold -o $t/exe $t/a.o
|
|
|
|
! readelf --sections $t/exe | fgrep -q .repro || false
|
|
|
|
|
|
|
|
|
2021-05-02 13:21:24 +03:00
|
|
|
clang -fuse-ld=`pwd`/../mold -o $t/exe $t/a.o -Wl,-repro
|
|
|
|
objcopy --dump-section .repro=$t/repro.tar $t/exe
|
2021-04-10 09:33:51 +03:00
|
|
|
|
|
|
|
tar -C $t -xf $t/repro.tar
|
|
|
|
fgrep -q /a.o $t/repro/response.txt
|
|
|
|
fgrep -q mold $t/repro/version.txt
|
|
|
|
|
2021-05-02 14:41:17 +03:00
|
|
|
|
|
|
|
MOLD_REPRO=1 clang -fuse-ld=`pwd`/../mold -o $t/exe $t/a.o
|
|
|
|
objcopy --dump-section .repro=$t/repro.tar $t/exe
|
|
|
|
|
|
|
|
tar -C $t -xf $t/repro.tar
|
|
|
|
fgrep -q /a.o $t/repro/response.txt
|
|
|
|
fgrep -q mold $t/repro/version.txt
|
|
|
|
|
2021-04-10 09:33:51 +03:00
|
|
|
echo OK
|