mirror of
https://github.com/rui314/mold.git
synced 2024-11-15 14:36:25 +03:00
965da0af4a
Test files are following this convention already, but source files weren't.
20 lines
439 B
Bash
Executable File
20 lines
439 B
Bash
Executable File
#!/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 | clang -c -o $t/a.o -xc -
|
|
void foo() {}
|
|
EOF
|
|
|
|
clang -fuse-ld=$mold -shared -o $t/b.so $t/a.o
|
|
! readelf --dynamic $t/b.so | grep -Pq 'Flags: NODUMP' || false
|
|
|
|
clang -fuse-ld=$mold -shared -o $t/b.so $t/a.o -Wl,-z,nodump
|
|
readelf --dynamic $t/b.so | grep -Pq 'Flags: NODUMP'
|
|
|
|
echo OK
|