From 728720599816426556cdf82c6b8baa86d1050413 Mon Sep 17 00:00:00 2001 From: Wook Song Date: Mon, 22 Jul 2019 14:48:59 +0900 Subject: [PATCH] [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 --- tests/nnstreamer_filter_tensorflow_lite/runTest.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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" -- 2.7.4