mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:30:12 +01:00
Minor changes to the blaze command line executed by our autoupdate scripts: - Don't change the convenience symlinks. Running autoupdate shouldn't cause `./bazel-bin/...` to switch to running a different binary. - Don't produce so much spam. Bazel will still log its build progress if necessary, and still report compile and runtime errors, but won't produce half a dozen lines of INFO at the start of the command.
10 lines
389 B
Bash
Executable File
10 lines
389 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
# Exceptions. See /LICENSE for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
bazel run -c opt --experimental_convenience_symlinks=ignore \
|
|
--ui_event_filters=-info,-stdout,-stderr,-finish \
|
|
//testing/file_test:file_test_base_test -- --autoupdate "$@"
|