Stop over-zealously checking application return code.

pull/399/head
Anthony Hu 2022-03-25 10:55:25 -04:00
parent f589ea275d
commit 9dc6366178
1 changed files with 0 additions and 24 deletions

View File

@ -72,12 +72,6 @@ else
exit 1
fi
if [ $RESULT -ne 0 ]; then
echo -e "\n\nbad return code"
do_cleanup
exit 1
fi
echo "Test basic copy from local to server"
./examples/echoserver/echoserver -1 -R $ready_file &
server_pid=$!
@ -94,12 +88,6 @@ else
exit 1
fi
if [ $RESULT -ne 0 ]; then
echo -e "\n\n bad return code"
do_cleanup
exit 1
fi
echo "Test of getting empty file"
PWD=`pwd`
./examples/echoserver/echoserver -1 -R $ready_file &
@ -117,12 +105,6 @@ else
exit 1
fi
if [ $RESULT -ne 0 ]; then
echo -e "\n\n bad return code"
do_cleanup
exit 1
fi
echo "Test of sending empty file"
PWD=`pwd`
./examples/echoserver/echoserver -1 -R $ready_file &
@ -140,12 +122,6 @@ else
exit 1
fi
if [ $RESULT -ne 0 ]; then
echo -e "\n\n bad return code"
do_cleanup
exit 1
fi
echo -e "\nALL Tests Passed"
exit 0