Sean Condon | 87b7850 | 2018-09-17 20:53:24 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | set -euo pipefail |
| 3 | # --- begin runfiles.bash initialization --- |
| 4 | if [[ ! -d "${RUNFILES_DIR:-/dev/null}" && ! -f "${RUNFILES_MANIFEST_FILE:-/dev/null}" ]]; then |
| 5 | if [[ -f "$0.runfiles_manifest" ]]; then |
| 6 | export RUNFILES_MANIFEST_FILE="$0.runfiles_manifest" |
| 7 | elif [[ -f "$0.runfiles/MANIFEST" ]]; then |
| 8 | export RUNFILES_MANIFEST_FILE="$0.runfiles/MANIFEST" |
| 9 | elif [[ -f "$0.runfiles/bazel_tools/tools/bash/runfiles/runfiles.bash" ]]; then |
| 10 | export RUNFILES_DIR="$0.runfiles" |
| 11 | fi |
| 12 | fi |
| 13 | |
| 14 | if [[ -f "${RUNFILES_DIR:-/dev/null}/bazel_tools/tools/bash/runfiles/runfiles.bash" ]]; then |
| 15 | source "${RUNFILES_DIR}/bazel_tools/tools/bash/runfiles/runfiles.bash" |
| 16 | elif [[ -f "${RUNFILES_MANIFEST_FILE:-/dev/null}" ]]; then |
| 17 | source "$(grep -m1 "^bazel_tools/tools/bash/runfiles/runfiles.bash " \ |
| 18 | "$RUNFILES_MANIFEST_FILE" | cut -d ' ' -f 2-)" |
| 19 | else |
| 20 | echo >&2 "ERROR: cannot find @bazel_tools//tools/bash/runfiles:runfiles.bash" |
| 21 | exit 1 |
| 22 | fi |
| 23 | |
| 24 | # --- end runfiles.bash initialization --- |
| 25 | echo "Test results for Angular CLI commands run in fm-gui2-lib-tests outputs at:" |
| 26 | ls $(rlocation org_onosproject_onos/apps/faultmanagement/fm-gui2-lib/fw-gui2-lib-ver.log) |
| 27 | ls $(rlocation org_onosproject_onos/apps/faultmanagement/fm-gui2-lib/fw-gui2-lib-lint.log) |
| 28 | ls $(rlocation org_onosproject_onos/apps/faultmanagement/fm-gui2-lib/fw-gui2-lib-test.log) |
| 29 | |