diff options
author | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-06-07 01:29:26 +0700 |
---|---|---|
committer | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-06-07 01:29:26 +0700 |
commit | 3e65062b5bb0957b5bb683ff04cb658d9d530477 (patch) | |
tree | 687c44cb9af58c61e0c6a8b1a93e26960df7868e | |
parent | 254bd7f76f6a3587208c8487f606b1b378b74c34 (diff) | |
download | ayatana-indicator-datetime-3e65062b5bb0957b5bb683ff04cb658d9d530477.tar.gz ayatana-indicator-datetime-3e65062b5bb0957b5bb683ff04cb658d9d530477.tar.bz2 ayatana-indicator-datetime-3e65062b5bb0957b5bb683ff04cb658d9d530477.zip |
tests/run-eds-ics-test: don't eat away test's result
Well, not exiting with the return code as the last step means that tests
has been failing silently for a while now. This commit reveals that, but
doesn't fix any test that fails.
-rwxr-xr-x | tests/run-eds-ics-test.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/run-eds-ics-test.sh b/tests/run-eds-ics-test.sh index 5654034..4cbc0d3 100755 --- a/tests/run-eds-ics-test.sh +++ b/tests/run-eds-ics-test.sh @@ -72,3 +72,6 @@ if [ $rv -eq 0 ]; then sleep 5 rm -rf $TEST_TMP_DIR fi + +# pass the test's return code to the caller. +exit "$rv" |