gh-ost/test.sh
Jess Breckenridge 175b6037d9 - Modifications so that development is easier.
- Striving for clone && boostrap and test simplicity.
- Modifications strive to use go 1.7 in repo directory.
- Moved libs to src directory where go expects them.
2017-05-02 14:41:15 -06:00

16 lines
195 B
Bash
Executable File

#!/bin/bash
. ./script/env
retval=0
for testsuite in base mysql sql
do
pushd go/${testsuite} > /dev/null;
$GOCMD test $*;
[ $? -ne 0 ] && retval=1
popd > /dev/null;
done
exit $retval