X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fapp_test%2Frun_multi_test.ksh;h=99a147b4e43382e2c40deed83fe9f8284535bd27;hb=refs%2Fchanges%2F18%2F1418%2F1;hp=4e1a7a3491164c42fbf787db18aa34f01d055ca5;hpb=2596b2305f214efbd7aba832fa009217ab854770;p=ric-plt%2Flib%2Frmr.git diff --git a/test/app_test/run_multi_test.ksh b/test/app_test/run_multi_test.ksh index 4e1a7a3..99a147b 100644 --- a/test/app_test/run_multi_test.ksh +++ b/test/app_test/run_multi_test.ksh @@ -1,5 +1,5 @@ #!/usr/bin/env ksh -# :vi ts=4 sw=4 noet : +# vim: ts=4 sw=4 noet : #================================================================================== # Copyright (c) 2019 Nokia # Copyright (c) 2018-2019 AT&T Intellectual Property. @@ -39,10 +39,13 @@ # The sender and receivers are run asynch. Their exit statuses are captured in a -# file in order for the 'main' to pick them up easily. +# file in order for the 'main' to pick them up easily. For the multi test the +# async connect must be DISABLED because in some environments (um, jenkins) the +# session connect time lags enough that the first message can be dropped silently. +# It doesn't happen all of the time, but frequently enough to be annoying. # function run_sender { - ./sender $nmsg $delay + RMR_ASYNC_CONN=0 ./sender $nmsg $delay echo $? >/tmp/PID$$.src # must communicate state back via file b/c asynch }