175b6037d9
- 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.
16 lines
195 B
Bash
Executable File
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
|