You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/deps/libinjection/test-driver.sh

14 lines
167 B

#!/bin/sh
set -u
TEST=$1
LOG="${TEST}.log"
rm -f $LOG
"./$TEST" >$LOG 2>&1
aexit=$?
if [ "$aexit" -eq "0" ]; then
echo "PASS: $TEST"
else
echo "FAIL: $TEST"
fi