[Test Framework] Do not printout clutters.
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Fri, 6 Jul 2018 06:26:54 +0000 (15:26 +0900)
committer오세원/Data Service Lab(SR)/Engineer/삼성전자 <sewon.oh@samsung.com>
Mon, 9 Jul 2018 05:01:27 +0000 (14:01 +0900)
When everything is alright, you don't need to log such.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
tests/testAPI.sh

index 87d8cc1..aad8647 100644 (file)
@@ -26,8 +26,7 @@ log=""
 # @brief check if a command is installed
 # @param 1 the command name
 function checkDependency {
-    echo "Checking for $1..."
-    which "$1" 2>/dev/null || {
+    which "$1" 1>/dev/null || {
       echo "Ooops. '$1' command is not installed. Please install '$1'."
       exit 1
     }