Skip to content
Snippets Groups Projects
Commit 3ad3a69e authored by willcarter's avatar willcarter
Browse files

please just update for the love of god. Adds nicks to the integration shell script

parent 2266c231
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,8 @@ do
for nid in 1
do
nid=$((($cid % 4) + 1))
CLIENTCMD="../bin/client -f blob$cid$nid --numnodes 5 -s $LASTNODE -i $cid -d $nid -m \"Hello, $nid\""
NICK=NICK${cid}
CLIENTCMD="../bin/client -f blob$cid$nid --numnodes 5 -s $LASTNODE -i $cid -d $nid -m \"Hello, $nid\" --nick ${!NICK}"
eval $CLIENTCMD >> $CLIENTOUT/client$cid$nid.out 2>&1 &
RETVAL=$!
eval CLIENTS${CTR}=$RETVAL
......@@ -89,7 +90,8 @@ do
for nid in 1
do
nid=$((($cid % 4) + 1))
CLIENTCMD="../bin/client -f blob$cid$nid --numnodes 5 -s $LASTNODE -i $cid -d $nid -m \"Hello, $nid\""
NICK=NICK${cid}
CLIENTCMD="../bin/client -f blob$cid$nid --numnodes 5 -s $LASTNODE -i $cid -d $nid -m \"Hello, $nid\" --nick ${!NICK}"
eval $CLIENTCMD >> $CLIENTOUT/client$cid$nid.out 2>&1 &
RETVAL=$!
eval CLIENTS${CTR}=$RETVAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment