X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Funit_test%2Frun_test_and_verify.sh;fp=scripts%2Funit_test%2Frun_test_and_verify.sh;h=0000000000000000000000000000000000000000;hb=7b39f7e279005c8466ef508220a532ce2aa4abf8;hp=cb03745961bd76c6a4d426bcc2c051fb197261ec;hpb=3fbd372b35b15a19fb171d5ae34294ff7b1e6485;p=feisty_meow.git diff --git a/scripts/unit_test/run_test_and_verify.sh b/scripts/unit_test/run_test_and_verify.sh deleted file mode 100644 index cb037459..00000000 --- a/scripts/unit_test/run_test_and_verify.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -# a simple unit test component that takes three parameters: the test to run, the -# input file to give that test, and the expected correct output file from the test. -# the script will complain if there is an error in the test output. otherwise it -# says nothing, but the script's return value can also be checked. - -to_run="$1"; shift -input_file="$1"; shift -answer_file="$1"; shift - -eval "$to_run" < "$input_file" | bash "$FEISTY_MEOW_SCRIPTS/unit_test/verify_correct_input.sh" "$answer_file" -