[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/wolfSSL/wolfPKCS11/master/commit-tests.sh [Back]  [Original]

#!/bin/sh

#commit-tests.sh


# make sure current config is ok
echo -e "\n\nTesting current config...\n\n"
make clean; make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nCurrent config make test failed" && exit 1


# make sure basic config is ok
echo -e "\n\nTesting basic config too...\n\n"
./configure;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure' failed" && exit 1

make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nTest './configure' make test failed " && exit 1


exit 0

Web Proxy Viewer  |  New URL  |  Original Page