#!/bin/bash
set -e

DEST=$1

bundle_test_integration_cli() {
	go_test_dir ./integration-cli
}

# subshell so that we can export PATH without breaking other things
(
	source "${MAKEDIR}/.integration-daemon-start"

	source "${MAKEDIR}/.ensure-frozen-images"
	source "${MAKEDIR}/.ensure-httpserver"
	source "${MAKEDIR}/.ensure-emptyfs"

	bundle_test_integration_cli

	source "${MAKEDIR}/.integration-daemon-stop"
) 2>&1 | tee -a "$DEST/test.log"