2023-08-12 16:30:41 +00:00
|
|
|
#!/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
|
2023-08-12 19:41:59 +00:00
|
|
|
printf "\n == Running benchmark == \n"
|
2023-08-12 16:30:41 +00:00
|
|
|
go test -bench=. -benchmem ./...
|
|
|
|
checkExit
|
|
|
|
else
|
|
|
|
echo "ERROR: unable to perform tests"
|
|
|
|
exit 1
|
|
|
|
fi
|