diff options
author | Humble Devassy Chirammal <humble.devassy@gmail.com> | 2017-05-09 00:09:21 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 00:09:21 +0530 |
commit | 0739c194d3fe908b6770dde32f7d9efcf2912ce2 (patch) | |
tree | 9d6137f38a97b149c4ef75878745ddd26095e2b2 /tests/run.sh | |
parent | b443906dd13941d9143ad5ef3519f8d11e452b74 (diff) | |
parent | ec2d37cd987c6aafc7d0d71ab6c2643487d8ef92 (diff) | |
download | gluster-0739c194d3fe908b6770dde32f7d9efcf2912ce2.tar.gz gluster-0739c194d3fe908b6770dde32f7d9efcf2912ce2.tar.bz2 gluster-0739c194d3fe908b6770dde32f7d9efcf2912ce2.tar.xz gluster-0739c194d3fe908b6770dde32f7d9efcf2912ce2.zip |
Merge pull request #40 from MohamedAshiqrh/test
Unit Test to check the shell script and Dockerfile lint. Travis.ci intergrated.
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-x | tests/run.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/run.sh b/tests/run.sh new file mode 100755 index 0000000..baf6a48 --- /dev/null +++ b/tests/run.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +SCRIPT_DIR=$(cd $(dirname $0); pwd) + +for testdir in ${SCRIPT_DIR}/*; do + if [[ ! -d ${testdir} ]]; then + continue + fi + + if [[ ! -x ${testdir}/run.sh ]]; then + continue + fi + + pushd ${testdir} + ./run.sh + rc=$? + popd + + if [[ ${rc} -ne 0 ]]; then + exit 1 + fi +done |