14 lines
175 B
Bash
Executable File
14 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
retval=0
|
|
|
|
for testsuite in base mysql sql
|
|
do
|
|
pushd go/${testsuite} > /dev/null;
|
|
go test $*;
|
|
[ $? -ne 0 ] && retval=1
|
|
popd > /dev/null;
|
|
done
|
|
|
|
exit $retval
|