1
0
Fork 0
mirror of synced 2024-11-17 06:55:36 -05:00
tpm/tests/helpers/tpm.sh
2015-08-02 12:56:44 +02:00

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