1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 00:31:41 +03:00
mold/test/demangle-cpp.sh
2024-08-14 16:23:25 +09:00

20 lines
477 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
cat <<'EOF' | $CC -c -o $t/a.o -xc -
void _ZN2ns7versionEv();
int main() { _ZN2ns7versionEv(); }
EOF
! $CC -B. -o $t/exe1 $t/a.o 2> $t/log || false
grep -Fq 'ns::version()' $t/log
cat <<'EOF' | $CC -c -o $t/b.o -xc -
void _ZN2ns7versionEv();
int main() { _ZN2ns7versionEv(); }
__attribute__((section(".comment"))) char str[] = "rustc version x.y.z\n";
EOF
! $CC -B. -o $t/exe2 $t/b.o 2> $t/log || false
grep -Fq 'ns::versionv' $t/log