2014-02-25 11:17:48 -05:00
|
|
|
#!/bin/bash
|
2014-04-08 00:14:19 -04:00
|
|
|
set -e
|
2014-02-25 11:17:48 -05:00
|
|
|
|
|
|
|
DEST=$1
|
|
|
|
|
|
|
|
bundle_test_integration_cli() {
|
|
|
|
go_test_dir ./integration-cli
|
|
|
|
}
|
|
|
|
|
2014-04-08 01:10:40 -04:00
|
|
|
# subshell so that we can export PATH without breaking other things
|
|
|
|
(
|
2014-12-19 02:20:59 -05:00
|
|
|
source "$(dirname "$BASH_SOURCE")/.integration-daemon-start"
|
2014-04-29 00:22:31 -04:00
|
|
|
|
2015-01-13 23:09:11 -05:00
|
|
|
# we need to wrap up everything in between integration-daemon-start and
|
|
|
|
# integration-daemon-stop to make sure we kill the daemon and don't hang,
|
|
|
|
# even and especially on test failures
|
|
|
|
didFail=
|
|
|
|
if ! {
|
2015-03-06 20:12:41 -05:00
|
|
|
source "$(dirname "$BASH_SOURCE")/.ensure-frozen-images"
|
2015-02-19 05:01:27 -05:00
|
|
|
source "$(dirname "$BASH_SOURCE")/.ensure-httpserver"
|
2015-01-20 15:53:24 -05:00
|
|
|
source "$(dirname "$BASH_SOURCE")/.ensure-emptyfs"
|
2014-04-11 20:49:49 -04:00
|
|
|
|
2015-01-13 23:09:11 -05:00
|
|
|
bundle_test_integration_cli
|
|
|
|
}; then
|
|
|
|
didFail=1
|
|
|
|
fi
|
2014-04-29 00:22:31 -04:00
|
|
|
|
2014-12-19 02:20:59 -05:00
|
|
|
source "$(dirname "$BASH_SOURCE")/.integration-daemon-stop"
|
2015-01-13 23:09:11 -05:00
|
|
|
|
|
|
|
[ -z "$didFail" ] # "set -e" ftw
|
2015-01-09 19:28:40 -05:00
|
|
|
) 2>&1 | tee -a $DEST/test.log
|