1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 08:37:28 +03:00
mold/test/elf/x86_64_note.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

54 lines
1.1 KiB
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
echo 'int main() {}' | $CC -o /dev/null -xc - -static >& /dev/null || \
{ echo skipped; exit; }
[ $MACHINE = x86_64 ] || { echo skipped; exit; }
cat <<EOF | $CC -o $t/a.o -c -x assembler -
.text
.globl _start
_start:
nop
.section .note.foo, "a", @note
.p2align 3
.quad 42
.section .note.bar, "a", @note
.p2align 2
.quad 42
.section .note.baz, "a", @note
.p2align 3
.quad 42
.section .note.nonalloc, "", @note
.p2align 0
.quad 42
EOF
./mold -static -o $t/exe $t/a.o
readelf -W --sections $t/exe > $t/log
grep -Eq '.note.bar\s+NOTE.+000008 00 A 0 0 4' $t/log
grep -Eq '.note.baz\s+NOTE.+000008 00 A 0 0 8' $t/log
grep -Eq '.note.nonalloc\s+NOTE.+000008 00 0 0 1' $t/log
readelf --segments $t/exe > $t/log
grep -Fq '01 .note.baz .note.foo .note.bar' $t/log
! grep -q 'NOTE.*0x0000000000000000 0x0000000000000000' $t/log || false
echo OK