-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change set -x
in coverage to be set by var
#13248
Change set -x
in coverage to be set by var
#13248
Conversation
These scripts are quite broken in general. I found it very useful to leave these flags in when debugging what was going wrong with coverage. Out of curiosity, I see you also removed the |
We plan on using code coverage with remote execution, yes. For context, we are doing Swift code coverage, not C++. |
I definitely get the debugging use case, it's too bad we don't have an easy way to have both here. Maybe we can conditionally |
This causes logs to be very noisy with coverage infrastructure logic
d583f14
to
64013e1
Compare
set -x
in coverage to be set by var
@c-mita can you review? |
Thanks! |
Using `set -x` in the coverage scripts causes a lot of noise, this changes it to be off by default, but something you can enable by passing `--test_env=VERBOSE_COVERAGE=1` for debugging. Closes #13248. PiperOrigin-RevId: 369396233
Using
set -x
in the coverage scripts causes a lot of noise, this changes it to be off by default, but something you can enable by passing--test_env=VERBOSE_COVERAGE=1
for debugging.