[Asterisk-code-review] CI: Fix logic inversion in runTestsuite (asterisk[13])
Jenkins2
asteriskteam at digium.com
Tue Jul 17 07:18:54 CDT 2018
Jenkins2 has submitted this change and it was merged. ( https://gerrit.asterisk.org/9474 )
Change subject: CI: Fix logic inversion in runTestsuite
......................................................................
CI: Fix logic inversion in runTestsuite
Change-Id: I56399aa384468f45494c2c3650420563a0b6efe1
---
M tests/CI/runTestsuite.sh
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
Jenkins2: Looks good to me, approved; Approved for Submit
diff --git a/tests/CI/runTestsuite.sh b/tests/CI/runTestsuite.sh
index 9261308..4ca6369 100755
--- a/tests/CI/runTestsuite.sh
+++ b/tests/CI/runTestsuite.sh
@@ -8,7 +8,7 @@
./cleanup-test-remnants.sh
-if [ $REALTIME -eq 0 ] ; then
+if [ $REALTIME -eq 1 ] ; then
$CIDIR/setupRealtime.sh
fi
@@ -16,7 +16,7 @@
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
--
To view, visit https://gerrit.asterisk.org/9474
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: merged
Gerrit-Change-Id: I56399aa384468f45494c2c3650420563a0b6efe1
Gerrit-Change-Number: 9474
Gerrit-PatchSet: 1
Gerrit-Owner: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Jenkins2
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20180717/99d9ef8d/attachment-0001.html>
More information about the asterisk-code-review
mailing list