Browse code

Fix bundle dir for integration-cli

test.main was unexpectedly created under docker/integration-cli/bundles/VERSION/test-integration-cli directory.
This commit moves test.main to docker/bundles/VERSION/test-integration-cli.

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>

Akihiro Suda authored on 2016/12/05 18:07:38
Showing 2 changed files
... ...
@@ -20,7 +20,7 @@ bundle_test_integration_cli() {
20 20
 go_test_dir() {
21 21
 	dir=$1
22 22
 	precompiled=$2
23
-	testbinary="$DEST/test.main"
23
+	testbinary="$ABS_DEST/test.main"
24 24
 	testcover=()
25 25
 	testcoverprofile=()
26 26
 	(
... ...
@@ -2,7 +2,7 @@
2 2
 set -e
3 3
 
4 4
 rm -rf "$DEST"
5
-DEST="$DEST/../test-integration-cli"
5
+DEST="$ABS_DEST/../test-integration-cli"
6 6
 
7 7
 if [ -z $DOCKER_INTEGRATION_TESTS_VERIFIED ]; then
8 8
 	source ${MAKEDIR}/.integration-test-helpers