summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xandroid/scripts/busybox.sh3
-rwxr-xr-xandroid/scripts/media_codecs_functional_tests.sh3
-rwxr-xr-xcommon/scripts/kselftest-runner.sh2
3 files changed, 8 insertions, 0 deletions
diff --git a/android/scripts/busybox.sh b/android/scripts/busybox.sh
index 10dc2b1..06c756c 100755
--- a/android/scripts/busybox.sh
+++ b/android/scripts/busybox.sh
@@ -55,3 +55,6 @@ test_func dmesg
test_func grep service /init.rc
rm -r /data/busybox 1>/dev/null 2>/dev/null
+
+# clean exit so that lava-test-shell can trust the results
+exit 0
diff --git a/android/scripts/media_codecs_functional_tests.sh b/android/scripts/media_codecs_functional_tests.sh
index 1ffbc22..66421e6 100755
--- a/android/scripts/media_codecs_functional_tests.sh
+++ b/android/scripts/media_codecs_functional_tests.sh
@@ -33,3 +33,6 @@ test_func(){
}
test_func
+
+# clean exit so that lava-test-shell can trust the results
+exit 0
diff --git a/common/scripts/kselftest-runner.sh b/common/scripts/kselftest-runner.sh
index 6220051..7318db5 100755
--- a/common/scripts/kselftest-runner.sh
+++ b/common/scripts/kselftest-runner.sh
@@ -22,3 +22,5 @@ do
[ "${test}" -a "${result}" ] && echo "${test}: ${result}" && unset test && unset result
done < ${LOG}
+# clean exit so that lava-test-shell can trust the results
+exit 0