Skip to content

Commit

Permalink
Merge pull request #7513 from cjcullen/dns
Browse files Browse the repository at this point in the history
Fix parallel-e2e.sh to work on my macbook (bash v3.2)
  • Loading branch information
zmerlynn committed Apr 29, 2015
2 parents 33b8f48 + 615906c commit 30c841d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/parallel-e2e.sh
Expand Up @@ -40,7 +40,7 @@ function up-clusters {
local cluster_dir=${KUBE_ROOT}/_output/e2e/${KUBE_GCE_INSTANCE_PREFIX}
mkdir -p ${cluster_dir}
export KUBECONFIG=${cluster_dir}/.kubeconfig
go run hack/e2e.go -up -v |& tee ${cluster_dir}/up.log &
go run hack/e2e.go -up -v 2>&1 | tee ${cluster_dir}/up.log &
done

fail=0
Expand All @@ -61,7 +61,7 @@ function run-tests {
local cluster_dir=${KUBE_ROOT}/_output/e2e/${KUBE_GCE_INSTANCE_PREFIX}
export KUBECONFIG=${cluster_dir}/.kubeconfig
export E2E_REPORT_DIR=${cluster_dir}
go run hack/e2e.go -test --test_args="--ginkgo.noColor" "${@:-}" -down |& tee ${cluster_dir}/e2e.log &
go run hack/e2e.go -test --test_args="--ginkgo.noColor" "${@:-}" -down 2>&1 | tee ${cluster_dir}/e2e.log &
done

wait
Expand Down

0 comments on commit 30c841d

Please sign in to comment.