Fix unit test script
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Mon, 29 Mar 2021 10:53:38 +0000 (19:53 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Mon, 29 Mar 2021 23:13:02 +0000 (08:13 +0900)
In main routine, return cannot be used.
Return values by calling exit instead.

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

index 887b03f..b6edc7d 100644 (file)
@@ -18,7 +18,7 @@ run_entry() {
 if [ -f "$1" ]; then
     echo $1
     run_entry $1
-    return $?
+    exit $?
 elif [ -d "$1" ]; then
     testlist=$(find $1 -type f -executable -name "unittest_*")
     for t in ${testlist}; do