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

36 lines
626 B
Bash
Raw Normal View History

2021-02-26 14:56:01 +03:00
#!/bin/bash
export LANG=
2021-02-26 14:56:01 +03:00
set -e
2021-03-01 10:28:16 +03:00
cd $(dirname $0)
2021-09-08 13:11:48 +03:00
mold=`pwd`/../../mold
2021-02-26 14:56:01 +03:00
echo -n "Testing $(basename -s .sh $0) ... "
2021-10-12 12:32:20 +03:00
t=$(pwd)/../../out/test/elf/$(basename -s .sh $0)
2021-02-26 14:56:01 +03:00
mkdir -p $t
2021-08-23 07:44:38 +03:00
[ $(uname -m) = x86_64 ] || { echo skipped; exit; }
cat <<EOF | cc -fPIC -shared -o $t/a.so -x assembler -
2021-02-26 14:56:01 +03:00
.globl ext1, ext2
ext1:
nop
ext2:
nop
EOF
cat <<EOF | cc -c -o $t/b.o -x assembler -
2021-02-26 14:56:01 +03:00
.globl _start
_start:
call ext1@PLT
call ext2@PLT
mov ext2@GOTPCREL(%rip), %rax
ret
EOF
$mold --pie -o $t/exe $t/b.o $t/a.so
2021-02-26 14:56:01 +03:00
objdump -d -j .plt.got $t/exe > $t/log
2021-12-15 11:00:07 +03:00
grep -Pq '1020:\s+ff 25 da 0f 00 00\s+jmp.*# 2000 <ext2>' $t/log
2021-02-26 14:56:01 +03:00
echo OK