1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/init-array-priorities.sh
2021-05-31 01:11:45 +09:00

57 lines
1.3 KiB
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
cat <<'EOF' | clang -c -o $t/a.o -xc -
#include <stdio.h>
__attribute__((constructor(10000))) void init4() { printf("1"); }
EOF
cat <<'EOF' | clang -c -o $t/b.o -xc -
#include <stdio.h>
__attribute__((constructor(100))) void init3() { printf("2"); }
EOF
cat <<'EOF' | clang -c -o $t/c.o -xc -
#include <stdio.h>
__attribute__((constructor)) void init1() { printf("3"); }
EOF
cat <<'EOF' | clang -c -o $t/d.o -xc -
#include <stdio.h>
__attribute__((constructor)) void init2() { printf("4"); }
EOF
cat <<'EOF' | clang -c -o $t/e.o -xc -
#include <stdio.h>
__attribute__((destructor(10000))) void fini4() { printf("5"); }
EOF
cat <<'EOF' | clang -c -o $t/f.o -xc -
#include <stdio.h>
__attribute__((destructor(100))) void fini3() { printf("6"); }
EOF
cat <<'EOF' | clang -c -o $t/g.o -xc -
#include <stdio.h>
__attribute__((destructor)) void fini1() { printf("7"); }
EOF
cat <<'EOF' | clang -c -o $t/h.o -xc -
#include <stdio.h>
__attribute__((destructor)) void fini2() { printf("8"); }
EOF
cat <<EOF | clang -c -o $t/i.o -xc -
int main() {}
EOF
clang -fuse-ld=`pwd`/../mold -o $t/exe $t/a.o $t/b.o $t/c.o $t/d.o \
$t/e.o $t/f.o $t/g.o $t/h.o $t/i.o
$t/exe | grep -q '21348756'
echo OK