From: cgeoffroy Date: Tue, 11 Apr 2017 15:16:49 +0000 (+0200) Subject: Avoid using sync inside vnfs X-Git-Tag: v3.1~34^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=commitdiff_plain;h=014a10a9415d97edbf5fada7dab5ee79a029da95 Avoid using sync inside vnfs --- diff --git a/utils/ci/check_manual_usage_example.sh b/utils/ci/check_manual_usage_example.sh index c6b7c13..2d43e36 100755 --- a/utils/ci/check_manual_usage_example.sh +++ b/utils/ci/check_manual_usage_example.sh @@ -75,12 +75,12 @@ sync # avoid text overlapping Cmd 'sh sync' Cmd 'sh echo "... starting various checks"' sync # avoid text overlapping -Cmd 'vnf1 ifconfig && sync && echo -e "\\n... checked vnf1"' +Cmd 'vnf1 ifconfig && echo -e "\\n... checked vnf1"' W "^... checked vnf1" -Cmd 'vnf2 ifconfig && sync && echo -e "\\n... checked vnf2"' +Cmd 'vnf2 ifconfig && echo -e "\\n... checked vnf2"' W "^... checked vnf2" # Try to ping vnfs -Cmd 'vnf1 ping -c 2 vnf2 && sync && echo -e "\\n... checked ping"' +Cmd 'vnf1 ping -c 2 vnf2 && echo -e "\\n... checked ping"' W "^... checked ping" 20s Cmd 'quit' # Wait for sonemu to end