From 71cc72d3c5e977355ebb0aa8bcb065a08207ec2f Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Tue, 7 Feb 2017 14:41:59 +0100 Subject: Parallelised merge, sth phase. --- test/scripts/light-system-test-stop.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'test/scripts/light-system-test-stop.sh') diff --git a/test/scripts/light-system-test-stop.sh b/test/scripts/light-system-test-stop.sh index 0bf4374..2265a34 100755 --- a/test/scripts/light-system-test-stop.sh +++ b/test/scripts/light-system-test-stop.sh @@ -12,6 +12,9 @@ stop_node() { ${top_srcdir}/tools/to_catlfish.py to_erl nodes/${node}/ "init:stop()" } -for node in ${ERLANGNODES}; do - stop_node $(echo $node | tr ':' ' ') +for nodegroup in $FRONTENDNODES $MERGEPRIMARYNODE $STORAGENODES $MERGESECONDARYNODES $SIGNINGNODES; do + for node in $nodegroup; do + echo "starting $node" + stop_node $(echo $node | tr ':' ' ') + done done -- cgit v1.1