Skip to content

Commit 19b891c

Browse files
committed
Use var array test_args to pass around the erquired flag.
1 parent cb4d4d0 commit 19b891c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/scripts/run_toolchain_tests.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@ source "${scripts_dir}/bazel.sh"
3333
"${bazel}" version
3434

3535
set -x
36-
test_args=()
36+
test_args=(
37+
"--check_direct_dependencies=off"
38+
)
3739

3840
targets=(
3941
"//toolchain/..."
4042
)
4143

42-
"${bazel}" ${TEST_MIGRATION:+"--strict"} --bazelrc=/dev/null --check_direct_dependencies=off test \
44+
"${bazel}" ${TEST_MIGRATION:+"--strict"} --bazelrc=/dev/null test \
4345
"${common_test_args[@]}" "${test_args[@]}" "${targets[@]}"

0 commit comments

Comments
 (0)