1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#!/bin/bash
# Info tool testing script
#
# Version: 20170825
EXIT_SUCCESS=0;
EXIT_FAILURE=1;
EXIT_IGNORE=77;
OPTION_SETS="";
OPTIONS="";
INPUT_GLOB="*.[ELels]*01";
if ! test -z ${SKIP_TOOLS_TESTS};
then
exit ${EXIT_IGNORE};
fi
TEST_EXECUTABLE="../ewftools/ewfinfo";
if ! test -x "${TEST_EXECUTABLE}";
then
TEST_EXECUTABLE="../ewftools/ewfinfo.exe";
fi
if ! test -x "${TEST_EXECUTABLE}";
then
echo "Missing test executable: ${TEST_EXECUTABLE}";
exit ${EXIT_FAILURE};
fi
TEST_RUNNER="tests/test_runner.sh";
if ! test -f "${TEST_RUNNER}";
then
TEST_RUNNER="./test_runner.sh";
fi
if ! test -f "${TEST_RUNNER}";
then
echo "Missing test runner: ${TEST_RUNNER}";
exit ${EXIT_FAILURE};
fi
source ${TEST_RUNNER};
run_test_on_input_directory "ewfinfo" "ewfinfo" "with_stdout_reference" "${OPTION_SETS}" "${TEST_EXECUTABLE}" "input" "${INPUT_GLOB}" "${OPTIONS}";
RESULT=$?;
exit ${RESULT};
|