tpm/tests/helpers/tpm.sh

14 lines
372 B
Bash
Raw Normal View History

2015-08-01 16:12:07 -04:00
check_dir_exists_helper() {
2015-08-01 16:24:38 -04:00
[ -d "$1" ]
2015-08-01 16:12:07 -04:00
}
# runs the scripts and asserts it has the correct output and exit code
script_run_helper() {
local script="$1"
local expected_output="$2"
local expected_exit_code="${3:-0}"
2015-08-02 12:38:44 -04:00
$script 2>&1 |
2015-08-01 16:12:07 -04:00
grep "$expected_output" >/dev/null 2>&1 && # grep -q flag quits the script early
[ "${PIPESTATUS[0]}" -eq "$expected_exit_code" ]
}