X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fapp_test%2Frun_exrts_test.ksh;h=cb3be8b316e90f331a2ea71b31c1835bdebc8242;hb=77406e61f2158f5b88b7a9f6e3e86d8f62c8f71a;hp=08807fc5d95885c851ff73e9fba268aefb65678f;hpb=7924a143675acc1f67b7047ab0c6cef190c547aa;p=ric-plt%2Flib%2Frmr.git diff --git a/test/app_test/run_exrts_test.ksh b/test/app_test/run_exrts_test.ksh index 08807fc..cb3be8b 100644 --- a/test/app_test/run_exrts_test.ksh +++ b/test/app_test/run_exrts_test.ksh @@ -36,6 +36,7 @@ # Author: E. Scott Daniels # --------------------------------------------------------------------------------- +ulimit -c unlimited # 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. @@ -51,7 +52,7 @@ function run_rcvr { port=$(( 4460 + ${1:-0} )) export RMR_RTG_SVC=$(( 9990 + $1 )) - ./ex_rts_receiver $port + ./ex_rts_receiver $copyclone -p $port echo $? >/tmp/PID$$.$1.rrc } @@ -108,7 +109,7 @@ mtype_start_stop="" while [[ $1 == -* ]] do case $1 in - -c) cthreads=$2; shift;; + -c) copyclone="-c $2"; shift;; -B) rebuild=1;; -d) delay=${2//,/}; shift;; # delay in micro seconds allow 1,000 to make it easier on user -i) use_installed=1;;