2020-04-27 19:13:16 +03:00
|
|
|
#!/usr/bin/env bash
|
2021-01-01 21:49:51 +03:00
|
|
|
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
2020-04-27 19:13:16 +03:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
# Copy-pasted from the Bazel Bash runfiles library v2.
|
|
|
|
set -uo pipefail; f=bazel_tools/tools/bash/runfiles/runfiles.bash
|
|
|
|
source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \
|
|
|
|
source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null || \
|
|
|
|
source "$0.runfiles/$f" 2>/dev/null || \
|
|
|
|
source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \
|
|
|
|
source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \
|
|
|
|
{ echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e
|
|
|
|
# --- end runfiles.bash initialization v2 ---
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
RUNNER="$(rlocation "$TEST_WORKSPACE/$1")"
|
|
|
|
SDK_VERSION="$2"
|
|
|
|
DAML="$(rlocation "$TEST_WORKSPACE/$3")"
|
|
|
|
CERTS="$4"
|
|
|
|
SANDBOX="$(rlocation "$TEST_WORKSPACE/$5")"
|
|
|
|
|
|
|
|
"$RUNNER" \
|
|
|
|
--sdk-version "$SDK_VERSION" \
|
|
|
|
--daml "$DAML" \
|
|
|
|
--certs "$CERTS" \
|
|
|
|
--sandbox "$SANDBOX" \
|
|
|
|
"${@:6}"
|