Philipp Schrader | 54cae03 | 2023-02-26 15:08:31 -0800 | [diff] [blame^] | 1 | #!/bin/bash |
2 | |||||
3 | set -o errexit | ||||
4 | set -o nounset | ||||
5 | set -o pipefail | ||||
6 | |||||
7 | bazel test \ | ||||
8 | --test_env=DISPLAY="${DISPLAY}" \ | ||||
9 | --strategy=TestRunner=processwrapper-sandbox \ | ||||
10 | --test_output=streamed \ | ||||
11 | --test_arg=--headed \ | ||||
12 | --test_timeout=9999 \ | ||||
13 | "$@" |