From: George Joseph Date: Tue, 17 Jul 2018 12:13:35 +0000 (-0600) Subject: CI: Fix logic inversion in runTestsuite X-Git-Tag: 13.23.0-rc1~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65cf0001fe91a6f1726843728902fb40a27f4963;p=thirdparty%2Fasterisk.git CI: Fix logic inversion in runTestsuite Change-Id: I56399aa384468f45494c2c3650420563a0b6efe1 --- diff --git a/tests/CI/runTestsuite.sh b/tests/CI/runTestsuite.sh index 9261308299..4ca63691f2 100755 --- a/tests/CI/runTestsuite.sh +++ b/tests/CI/runTestsuite.sh @@ -8,7 +8,7 @@ pushd $TESTSUITE_DIR ./cleanup-test-remnants.sh -if [ $REALTIME -eq 0 ] ; then +if [ $REALTIME -eq 1 ] ; then $CIDIR/setupRealtime.sh fi @@ -16,7 +16,7 @@ export PYTHONPATH=./lib/python/ echo "Running tests ${TEST_COMMAND}" ./runtests.py --cleanup ${TEST_COMMAND} | contrib/scripts/pretty_print --no-color --no-timer --term-width=120 --show-errors || : -if [ $REALTIME -eq 0 ] ; then +if [ $REALTIME -eq 1 ] ; then $CIDIR/teardownRealtime.sh fi