From: Chris Koeritz Date: Sun, 9 Oct 2016 02:39:29 +0000 (-0400) Subject: cleaned up some wording. X-Git-Tag: 2.140.90~377 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=b50f0e22d37af29bfaf893b1024722b8e960b803;p=feisty_meow.git cleaned up some wording. --- diff --git a/scripts/unit_test/verify_correct_input.sh b/scripts/unit_test/verify_correct_input.sh index 28063eef..1cdef40c 100644 --- a/scripts/unit_test/verify_correct_input.sh +++ b/scripts/unit_test/verify_correct_input.sh @@ -1,6 +1,7 @@ #/bin/bash -# a simple component of unit testing which verifies that the input matches the output. +# a simple component of unit testing which verifies that the input matches +# the expected input. # the single parameter to the script is a file that contains the correct answer. @@ -9,8 +10,8 @@ source "$FEISTY_MEOW_SCRIPTS/core/functions.sh" answer_file="$1"; shift if [ -z "$answer_file" -o ! -f "$answer_file" ]; then - echo This script needs a parameter which is a valid file filled with the - echo correct version of the input. + echo This script needs a valid file parameter that points at the correct + echo values for the data stream. exit 1 fi @@ -23,15 +24,17 @@ done diff -q "$input_save_file" "$answer_file" if [ $? -ne 0 ]; then sep 76 - echo "The provided input differs from the correct answer!" + echo "The provided text differs from the correct answer!" echo -e "\nAnswer file has:\n==============" cat "$answer_file" - echo -e "==============\nBut the input data has:\n==============" + echo -e "==============\nBut the data we saw has:\n==============" cat "$input_save_file" echo -e "==============" sep 76 false # set bad exit value. fi +rm "$input_save_file" + exit $?