1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 08:37:28 +03:00
mold/test/elf/x86_64_plt.sh
Rui Ueyama 930964ab38 [ELF] Do not run target-specific tests on unintended targets
This commit reduces the number of tests that are invoked only to
print out the "skipped" message.
2022-10-01 10:29:40 +08:00

41 lines
712 B
Bash
Executable File

#!/bin/bash
export LC_ALL=C
set -e
CC="${TEST_CC:-cc}"
CXX="${TEST_CXX:-c++}"
GCC="${TEST_GCC:-gcc}"
GXX="${TEST_GXX:-g++}"
MACHINE="${MACHINE:-$(uname -m)}"
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
t=out/test/elf/$MACHINE/$testname
mkdir -p $t
[ $MACHINE = x86_64 ] || { echo skipped; exit; }
cat <<'EOF' | $CC -o $t/a.o -c -x assembler -
.text
.globl main
main:
sub $8, %rsp
lea msg(%rip), %rdi
xor %rax, %rax
call printf@PLT
xor %rax, %rax
add $8, %rsp
ret
.data
msg:
.string "Hello world\n"
EOF
$CC -B. -o $t/exe $t/a.o
readelf --sections $t/exe | grep -Fq '.got'
readelf --sections $t/exe | grep -Fq '.got.plt'
$QEMU $t/exe | grep -q 'Hello world'
echo OK