From e494a047a02e043e5143db13a3531a366f53ea0a Mon Sep 17 00:00:00 2001 From: Mohamed Ashiq Liyazudeen Date: Thu, 18 May 2017 18:02:21 +0530 Subject: Travis CI update and disabling dockerfile_lint Travis now runs the test where it: * Builds the Dockerfile * Runs Docker image with required parameters * Verifies the state of the container Signed-off-by: Mohamed Ashiq Liyazudeen --- tests/Dockerfiletest/run_mask.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 tests/Dockerfiletest/run_mask.sh (limited to 'tests/Dockerfiletest/run_mask.sh') diff --git a/tests/Dockerfiletest/run_mask.sh b/tests/Dockerfiletest/run_mask.sh new file mode 100755 index 0000000..b82b810 --- /dev/null +++ b/tests/Dockerfiletest/run_mask.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +SCRIPT_DIR=$(cd $(dirname $0); pwd) + +echo "running tests in ${SCRIPT_DIR}" + +for test in ${SCRIPT_DIR}/test_*.sh ; do + $test + if [ $? -ne 0 ]; then + exit 1 + fi +done -- cgit v1.2.3