#!/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 __attribute__((constructor(10000))) void init4() { printf("1"); } EOF cat <<'EOF' | clang -c -o $t/b.o -xc - #include __attribute__((constructor(100))) void init3() { printf("2"); } EOF cat <<'EOF' | clang -c -o $t/c.o -xc - #include __attribute__((constructor)) void init1() { printf("3"); } EOF cat <<'EOF' | clang -c -o $t/d.o -xc - #include __attribute__((constructor)) void init2() { printf("4"); } EOF cat <<'EOF' | clang -c -o $t/e.o -xc - #include __attribute__((destructor(10000))) void fini4() { printf("5"); } EOF cat <<'EOF' | clang -c -o $t/f.o -xc - #include __attribute__((destructor(100))) void fini3() { printf("6"); } EOF cat <<'EOF' | clang -c -o $t/g.o -xc - #include __attribute__((destructor)) void fini1() { printf("7"); } EOF cat <<'EOF' | clang -c -o $t/h.o -xc - #include __attribute__((destructor)) void fini2() { printf("8"); } EOF cat <