projects
/
platform
/
upstream
/
nnstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ddb7585
)
[Test Framework] Do not printout clutters.
author
MyungJoo 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
patch
|
blob
|
history
diff --git
a/tests/testAPI.sh
b/tests/testAPI.sh
index
87d8cc1
..
aad8647
100644
(file)
--- a/
tests/testAPI.sh
+++ b/
tests/testAPI.sh
@@
-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
}