diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-12-08 15:15:44 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-12-08 15:15:44 -0800 |
commit | c2c37f3a63d0273fb2634acaa4f23e050684e689 (patch) | |
tree | 93c91a69644efc64eaa217c6b6332697b8be1a71 /netcon/docker-test/build_tests.sh | |
parent | 0df33485ca573a33477eb8b076c8ca8c41e6a557 (diff) | |
parent | b1eb16d5fb785872bfc38121edb78a785b58206f (diff) | |
download | infinitytier-c2c37f3a63d0273fb2634acaa4f23e050684e689.tar.gz infinitytier-c2c37f3a63d0273fb2634acaa4f23e050684e689.zip |
Merge with fixes of netcon to edge.
Diffstat (limited to 'netcon/docker-test/build_tests.sh')
-rwxr-xr-x | netcon/docker-test/build_tests.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/netcon/docker-test/build_tests.sh b/netcon/docker-test/build_tests.sh index 2da539e1..f360124b 100755 --- a/netcon/docker-test/build_tests.sh +++ b/netcon/docker-test/build_tests.sh @@ -12,6 +12,12 @@ export image_build_script=_build_single_image.sh # Iterate over all depth=2 (relatively-speaking) directories and perform each test find . -mindepth 2 -maxdepth 2 -type d | while read testdir; do + + if [[ $testdir != *$1* ]] + then + continue + fi + echo "*** Building: '$testdir'..." rm _results/*.tmp @@ -24,4 +30,4 @@ find . -mindepth 2 -maxdepth 2 -type d | while read testdir; do rm $image_build_script cd ../../ -done
\ No newline at end of file +done |