Bug fix in run_test.sh (#586)
author오형석/동작제어Lab(SR)/Senior Engineer/삼성전자 <hseok82.oh@samsung.com>
Wed, 11 Apr 2018 08:41:24 +0000 (17:41 +0900)
committer서상민/동작제어Lab(SR)/Senior Engineer/삼성전자 <sangmin7.seo@samsung.com>
Wed, 11 Apr 2018 08:41:24 +0000 (17:41 +0900)
Bug fix: parsing error by '/' when test have sub-directory

Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
tests/framework/run_test.sh

index 6f63e99..1e7c334 100755 (executable)
@@ -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