1
1
mirror of https://github.com/rui314/mold.git synced 2025-01-07 18:02:15 +03:00
mold/test/duplicate-error.sh

18 lines
303 B
Bash
Raw Normal View History

2020-12-11 13:34:05 +03:00
#!/bin/bash
set -e
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 -
.text
.globl main
main:
nop
EOF
2020-12-18 09:13:29 +03:00
! ../mold -o $t/exe $t/a.o $t/a.o 2> $t/log
2020-12-11 13:34:05 +03:00
grep -q 'duplicate symbol: .*\.o: .*\.o: main' $t/log
echo ' OK'