1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/elf/reverse-sections.sh
2022-05-09 13:56:48 +08:00

58 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
export LC_ALL=C
set -e
CC="${CC:-cc}"
CXX="${CXX:-c++}"
GCC="${GCC:-gcc}"
GXX="${GXX:-g++}"
OBJDUMP="${OBJDUMP:-objdump}"
MACHINE="${MACHINE:-$(uname -m)}"
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
t=out/test/elf/$testname
mkdir -p $t
cat <<EOF | $CC -o $t/a.o -c -xc++ -
#include <iostream>
static struct Foo1 {
Foo1() { std::cout << "foo1 "; }
} x;
static struct Foo2 {
Foo2() { std::cout << "foo2 "; }
} y;
EOF
cat <<EOF | $CC -o $t/b.o -c -xc++ -
#include <iostream>
static struct Foo3 {
Foo3() { std::cout << "foo3 "; }
} x;
static struct Foo4 {
Foo4() { std::cout << "foo4 "; }
} y;
EOF
cat <<EOF | $CC -o $t/c.o -c -xc++ -
#include <iostream>
static struct Foo5 {
Foo5() { std::cout << "foo5 "; }
} x;
static struct Foo6 {
Foo6() { std::cout << "foo6 "; }
} y;
int main() { std::cout << "\n"; }
EOF
$CXX -B. -o $t/exe1 $t/a.o $t/b.o $t/c.o
$QEMU $t/exe1 | grep -q 'foo1 foo2 foo3 foo4 foo5 foo6'
$CXX -B. -o $t/exe2 $t/a.o $t/b.o $t/c.o -Wl,--reverse-sections
$QEMU $t/exe2 | grep -q 'foo5 foo6 foo3 foo4 foo1 foo2'
echo OK