From: Wook Song Date: Mon, 22 Jul 2019 05:48:59 +0000 (+0900) Subject: [Tests/Filter/TFLite] bugfix: Fix wrong if-logic X-Git-Tag: accepted/tizen/unified/20190723.112130~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=728720599816426556cdf82c6b8baa86d1050413;p=platform%2Fupstream%2Fnnstreamer.git [Tests/Filter/TFLite] bugfix: Fix wrong if-logic This patch fixes wrong if-logic that results in termination of the test without running the gstTest code when /etc/streamer.ini is used. Signed-off-by: Wook Song --- diff --git a/tests/nnstreamer_filter_tensorflow_lite/runTest.sh b/tests/nnstreamer_filter_tensorflow_lite/runTest.sh index eaea51e..40fabb4 100644 --- a/tests/nnstreamer_filter_tensorflow_lite/runTest.sh +++ b/tests/nnstreamer_filter_tensorflow_lite/runTest.sh @@ -59,10 +59,11 @@ else report exit fi - fi - echo "Cannot identify nnstreamer.ini" - report - exit + else + echo "Cannot identify nnstreamer.ini" + report + exit + fi fi PATH_TO_MODEL="../test_models/models/mobilenet_v1_1.0_224_quant.tflite"