From ff217085aec1198793c59b66c858264c30f971e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=ED=95=9C=EC=A2=85/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 5 Nov 2019 14:38:25 +0900 Subject: [PATCH] [neurun] Print error when a test was not found (#8728) Print error when a framework test was not found. It is printed in file `framework_test.log`. Signed-off-by: Hanjoung Lee --- tests/framework/run_test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/framework/run_test.sh b/tests/framework/run_test.sh index 9309715..a59d6a3 100755 --- a/tests/framework/run_test.sh +++ b/tests/framework/run_test.sh @@ -267,6 +267,8 @@ find_tests() if [ -d "$DIR" ]; then TESTS_FOUND=$(find "$DIR" -type f -name 'config.sh' -exec dirname {} \;| sed 's|^./||' | sort) TESTS_TO_RUN="$TESTS_TO_RUN $TESTS_FOUND" + else + echo "Test $DIR was not found. This test is not added." 1>&2 fi done popd > /dev/null -- 2.7.4