blob: a289f595470cb7fe9e0973b821f83e7fff0d202f [file]
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
BZLMOD_FLAG="${BZLMOD_FLAG:-}"
# shellcheck disable=SC2086
if ! bazel test $BZLMOD_FLAG --nobuild_runfile_links //...; then
echo "ERROR: expected 'bazel test $BZLMOD_FLAG --nobuild_runfile_links //...' to pass"
exit 1
fi