From 48ab347b13941de4682db41994a5e2e9a5bd48c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Wed, 11 Apr 2018 17:41:24 +0900 Subject: [PATCH] Bug fix in run_test.sh (#586) Bug fix: parsing error by '/' when test have sub-directory Signed-off-by: Hyeongseok Oh --- tests/framework/run_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/framework/run_test.sh b/tests/framework/run_test.sh index 6f63e99..1e7c334 100755 --- a/tests/framework/run_test.sh +++ b/tests/framework/run_test.sh @@ -5,7 +5,7 @@ CACHE_ROOT_PATH=$MY_PATH/"cache" TEST_ROOT_PATH=$MY_PATH/"tests" RUN_DISABLED="true" -if [[ $@ -eq 0 ]]; then +if [[ $# -eq 0 ]]; then RUN_DISABLED="false" fi -- 2.7.4