1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-05 00:57:08 +03:00
mold/test/version.sh

12 lines
261 B
Bash
Raw Normal View History

2021-03-01 07:49:39 +03:00
#!/bin/bash
set -e
2021-03-01 10:28:16 +03:00
cd $(dirname $0)
2021-03-01 07:49:39 +03:00
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/tmp/$(basename -s .sh $0)
mkdir -p $t
../mold -v | grep -Pq 'mold .*\(compatible with GNU ld\)'
../mold --version | grep -Pq 'mold .*\(compatible with GNU ld\)'
2021-03-01 07:49:39 +03:00
echo OK