Browse Source

spaces to tab

pull/914/head
Daniel Gibbs 9 years ago
parent
commit
cde3148c9d
  1. 32
      tests/tests_ts3server.sh

32
tests/tests_ts3server.sh

@ -158,9 +158,9 @@ fn_setstatus(){
echo "Required status: ${requiredstatus}" echo "Required status: ${requiredstatus}"
counter=0 counter=0
echo "Current status: ${currentstatus}" echo "Current status: ${currentstatus}"
while [ "${requiredstatus}" != "${currentstatus}" ]; do while [ "${requiredstatus}" != "${currentstatus}" ]; do
counter=$((counter+1)) counter=$((counter+1))
fn_currentstatus_ts3 fn_currentstatus_ts3
echo -ne "New status: ${currentstatus}\\r" echo -ne "New status: ${currentstatus}\\r"
if [ "${requiredstatus}" == "ONLINE" ]; then if [ "${requiredstatus}" == "ONLINE" ]; then
@ -168,19 +168,19 @@ fn_setstatus(){
else else
(command_stop.sh > /dev/null 2>&1) (command_stop.sh > /dev/null 2>&1)
fi fi
if [ "${counter}" -gt "5" ]; then if [ "${counter}" -gt "5" ]; then
currentstatus="FAIL" currentstatus="FAIL"
echo "Current status: ${currentstatus}" echo "Current status: ${currentstatus}"
echo "" echo ""
echo "Unable to start or stop server." echo "Unable to start or stop server."
exit 1 exit 1
fi fi
done done
echo -ne "New status: ${currentstatus}\\r" echo -ne "New status: ${currentstatus}\\r"
echo -e "\n" echo -e "\n"
echo "Test starting:" echo "Test starting:"
echo "" echo ""
sleep 0.5 sleep 0.5
} }
# End of every test will expect the result to either pass or fail # End of every test will expect the result to either pass or fail

Loading…
Cancel
Save