From: cgeoffroy Date: Tue, 11 Apr 2017 09:22:17 +0000 (+0200) Subject: Protect backslash to avoid premature substitution X-Git-Tag: v3.1~34^2~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=b6a2aeed522ef0378661d570570efa0e4b546de1;hp=-c;p=osm%2Fvim-emu.git Protect backslash to avoid premature substitution --- b6a2aeed522ef0378661d570570efa0e4b546de1 diff --git a/utils/ci/check_manual_usage_example.sh b/utils/ci/check_manual_usage_example.sh index 56edf79..c6b7c13 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 && sync && echo -e "\\n... checked vnf1"' W "^... checked vnf1" -Cmd 'vnf2 ifconfig && sync && echo -e "\n... checked vnf2"' +Cmd 'vnf2 ifconfig && sync && 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 && sync && echo -e "\\n... checked ping"' W "^... checked ping" 20s Cmd 'quit' # Wait for sonemu to end