tpm/run-tests

32 lines
535 B
Plaintext
Raw Normal View History

2014-05-24 15:38:41 +02:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2014-11-19 15:58:04 +01:00
# running test suite is successful by default
tests_exit_value=0
2014-05-24 15:38:41 +02:00
run_vagrant() {
vagrant up
2014-05-24 15:38:41 +02:00
}
# Halt vagrant after tests are done running, unless KEEP_RUNNING environment
# variable is set to 'true'.
2014-05-24 15:38:41 +02:00
stop_vagrant() {
if [ -z "$KEEP_RUNNING" ]; then
vagrant halt
fi
}
2014-05-24 15:38:41 +02:00
run_tests() {
2014-11-19 15:58:04 +01:00
vagrant ssh -c "cd ~/tpm; ./tests/run-tests-within-vm"
tests_exit_value=$?
2014-05-24 15:38:41 +02:00
}
main() {
2014-05-24 23:18:37 +02:00
run_vagrant
run_tests
stop_vagrant
2014-11-19 15:58:04 +01:00
exit "$tests_exit_value"
2014-05-24 15:38:41 +02:00
}
main