easyrsa/op_test.sh
Eric F Crist 8e862614fa
Failed to add the new op_test.sh script
Signed-off-by: Eric F Crist <ecrist@secure-computing.net>
2019-09-25 08:15:04 -05:00

15 lines
374 B
Bash
Executable File

#!/bin/sh
#
# Downloads the run_unit_tests.sh file from easyrsa-unit-tests repo
# and executes that - allows for disconnected testing from the easy-rsa
# repo with TravisCI.
curl -O 'https://raw.githubusercontent.com/OpenVPN/easyrsa-unit-tests/master/easyrsa-unit-tests.sh'
if [ -e "easyrsa-unit-tests.sh" ];
then
sh easyrsa-unit-tests.sh -v
fi
rm easyrsa-unit-tests.sh