func/core/pkg_gcc/10-gcc-build-simple.sh
2024-08-14 20:52:26 -07:00

10 lines
202 B
Bash
Executable File

#!/bin/bash
r_log "gcc" "Ensure gcc can build a simple program"
OUTPUTPROG=$(mktemp)
gcc ./common/files/hello.c -o "$OUTPUTPROG"
"$OUTPUTPROG" | grep -q "Hello!"
r_checkExitStatus $?
rm "$OUTPUTPROG"