1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/version.sh
2021-06-27 17:03:59 +09:00

31 lines
724 B
Bash
Executable File

#!/bin/bash
set -e
cd $(dirname $0)
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/tmp/$(basename -s .sh $0)
mkdir -p $t
../mold -v | grep -q 'mold .*compatible with GNU ld and GNU gold'
../mold --version | grep -q 'mold .*compatible with GNU ld and GNU gold'
../mold -V | grep -q 'mold .*compatible with GNU ld and GNU gold'
../mold -V | grep -q elf_x86_64
../mold -V | grep -q elf_i386
cat <<EOF | clang -c -xc -o $t/a.o -
#include <stdio.h>
int main() {
printf("Hello world\n");
}
EOF
rm -f $t/exe
clang -fuse-ld=`pwd`/../mold -Wl,--version -o $t/exe $t/a.o | grep -q mold
! [ -f $t/exe ] || false
clang -fuse-ld=`pwd`/../mold -Wl,-v -o $t/exe $t/a.o | grep -q mold
$t/exe | grep -q 'Hello world'
echo OK