forked from sig_core/toolkit
10 lines
196 B
Bash
10 lines
196 B
Bash
|
#!/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
|