19 lines
353 B
Bash
19 lines
353 B
Bash
|
#!/bin/sh
|
||
|
## TEST file used by docker testing containers
|
||
|
touch render.yml
|
||
|
checkExit() {
|
||
|
if [ "$?" -ne 0 ];then
|
||
|
exit 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
if command -v go &> /dev/null
|
||
|
then
|
||
|
printf "\n == Running benchmark (sends to results.txt) == \n"
|
||
|
go test -bench=. -benchmem ./...
|
||
|
checkExit
|
||
|
else
|
||
|
echo "ERROR: unable to perform tests"
|
||
|
exit 1
|
||
|
fi
|