1
0
Fork 0
mirror of synced 2024-05-25 03:25:18 -04:00
tpm/tests/helpers/tpm.sh
2015-08-02 18:56:37 +02:00

14 lines
372 B
Bash

check_dir_exists_helper() {
[ -d "$1" ]
}
# 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}"
$script 2>&1 |
grep "$expected_output" >/dev/null 2>&1 && # grep -q flag quits the script early
[ "${PIPESTATUS[0]}" -eq "$expected_exit_code" ]
}