1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-12 23:48:51 +03:00
mold/test/elf/no-quick-exit.sh
2022-10-06 12:07:31 +08:00

15 lines
235 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
cat <<EOF | $CC -o $t/a.o -c -xc -
#include <stdio.h>
int main() {
printf("Hello world\n");
return 0;
}
EOF
$CC -B. -o $t/exe $t/a.o -Wl,-no-quick-exit
$QEMU $t/exe | grep -q 'Hello world'