1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 08:37:28 +03:00

[ELF] Skip one more test if musl

https://github.com/rui314/mold/issues/565
This commit is contained in:
Rui Ueyama 2022-07-01 19:05:28 +08:00
parent 23b90dfc38
commit ad427f8629

View File

@ -13,6 +13,9 @@ cd "$(dirname "$0")"/../..
t=out/test/elf/$testname
mkdir -p $t
# Skip if libc is musl because musl does not support GNU FUNC
ldd --help 2>&1 | grep -q musl && { echo skipped; exit; }
# We need to implement R_386_GOT32X relaxation to support PIE on i386
[ $MACHINE = i386 ] && { echo skipped; exit; }
[ $MACHINE = i686 ] && { echo skipped; exit; }