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

Add a test

This commit is contained in:
Rui Ueyama 2021-07-26 21:32:12 +09:00
parent 2d003c2546
commit 73d1dcac5d

32
test/i386-mergeable-strings.sh Executable file
View File

@ -0,0 +1,32 @@
#!/bin/bash
set -e
cd $(dirname $0)
mold=`pwd`/../mold
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/tmp/$(basename -s .sh $0)
mkdir -p $t
cat <<'EOF' | cc -o $t/a.o -c -x assembler -m32 -
.text
.globl main
main:
push $.L.str+3
call printf
add $4, %esp
push $.rodata.str1.1+16
call printf
add $4, %esp
xor %eax, %eax
ret
.section .rodata.str1.1, "aMS", @progbits, 1
.string "bar"
.L.str:
.string "xyzHello"
.string "foo world\n"
EOF
clang -m32 -fuse-ld=$mold -static -o $t/exe $t/a.o
$t/exe | grep -q 'Hello world'
echo OK