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
|
|
|
|
2014-04-08 01:10:40 -04:00
|
|
|
# pull the busybox image before running the tests
|
|
|
|
sleep 2
|
2014-04-29 00:22:31 -04:00
|
|
|
|
2014-04-29 00:23:22 -04:00
|
|
|
source "$(dirname "$BASH_SOURCE")/.ensure-busybox"
|
2014-04-11 20:49:49 -04:00
|
|
|
|
2014-04-08 01:10:40 -04:00
|
|
|
bundle_test_integration_cli
|
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-09 19:28:40 -05:00
|
|
|
) 2>&1 | tee -a $DEST/test.log
|