Skip to content
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

cmd/go: test mixes stderr and stdout #25241

Open
andreimatei opened this issue May 3, 2018 · 9 comments
Open

cmd/go: test mixes stderr and stdout #25241

andreimatei opened this issue May 3, 2018 · 9 comments
Labels
GoCommand cmd/go NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@andreimatei
Copy link
Contributor

7badae8 appears to have made go test mix stderr and stdout from tests, which has made go 1.10 a regression for CockroachDB's benchmarks.
This issue is related to #18010 :
Not only is the benchmark output not swallowed, but stderr and stdout are now mixed, so, if our binary produces logs (on stderr, as ours does), it's now impossible to see the benchmark results or use tools like benchstat.
In particular, I believe benchstat fails to work because the mixing of stderr and stdout doesn't even use line buffering - so the benchmark measurements lines are mixed with log lines and benchstat can't recognize them any more.

I generally concur with the folks on #18010 arguing that the swallowing/not swallowing of output is inconsistent (and there's no control over it as far as I can tell). Additionally, now the mixing of stdout and stderr is really a problem. The argument for not doing anything about go test -bench not swallowing output was that "we should at least preserve existing behavior as much as possible", but it would appear that existing behavior was changed in a quite significant way by this mixing. So I would kindly ask for the swallowing decision to be re-evaluated.

What version of Go are you using (go version)?

go version go1.10 darwin/amd64

Does this issue reproduce with the latest release?

Yes

What operating system and processor architecture are you using (go env)?

OS X/ amd64

cc @benesch

@agnivade agnivade changed the title go test mixes stderr and stdout, making benchmark results impossible to see cmd/go: test mixes stderr and stdout, making benchmark results impossible to see May 4, 2018
@agnivade agnivade added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label May 4, 2018
@agnivade agnivade added this to the Go1.11 milestone May 4, 2018
@odeke-em
Copy link
Member

/cc @bradfitz and @rsc

@zamsden
Copy link

zamsden commented Jul 29, 2018

This is horrible and next to unusable. Users should be able to opt-in to getting this output, not forced in.

@rsc
Copy link
Contributor

rsc commented Aug 10, 2018

I'm sorry your benchmarks print so much to standard error.
They might give more reliable timing results if they didn't do that, parsing aside.
"Horrible and next to unusable" strikes me as a bit of an exaggeration.
As far as I can tell only CockroachDB is running into this.

I'm sorry we didn't get to it in Go 1.11.

@rsc rsc modified the milestones: Go1.11, Go1.12 Aug 10, 2018
@rsc rsc modified the milestones: Go1.12, Go1.13 Nov 20, 2018
@bcmills bcmills changed the title cmd/go: test mixes stderr and stdout, making benchmark results impossible to see cmd/go: test mixes stderr and stdout Jan 18, 2019
@bcmills
Copy link
Contributor

bcmills commented Jan 18, 2019

#24929 may also affect this behavior.

@stevenh
Copy link
Contributor

stevenh commented Feb 18, 2025

I have just come across this issue, when trying to redirect stderr independently from stdout from a test only to discover this isn't possible.

A quick investigation identified that this is happening in parent process for the test during func (r *runTestActor) Act which captures stderr and stdout from the actual test process into the same io.Writer

cmd.Stderr = stdout

It's not clear to me why stderr can't be handled separately, I suspect there might be something that requires the combined output?

@seankhliao seankhliao added the GoCommand cmd/go label Feb 22, 2025
@matloob
Copy link
Contributor

matloob commented Apr 1, 2025

We've had this behavior for a while, and now I wonder if there are some users who are expecting it and would be surprised if we separated them out.

@tamird
Copy link
Contributor

tamird commented Apr 1, 2025

We've had this behavior for a while, and now I wonder if there are some users who are expecting it and would be surprised if we separated them out.

This reasoning can be used to justify status quo anywhere that undocumented behavior exists. 🤷

@matloob
Copy link
Contributor

matloob commented Apr 1, 2025

This reasoning can be used to justify status quo anywhere that undocumented behavior exists. 🤷

That's fair. I would like to hear from users who would like to see this change to see if there's enough demand to try and see if we can change the output behavior.

My guess is that the change was originally made to make the test outputs easier to cache. There's just one cached output file currently rather a stdout output and a stderr output, or a stdout section and stderr section in a single file

@benesch
Copy link
Contributor

benesch commented Apr 1, 2025

I would like to hear from users who would like to see this change to see if there's enough demand to try and see if we can change the output behavior.

The mixing of stdout/stderr seems a bit wrong from a Unix philosophy perspective. But I no longer work on CockroachDB (or really write Go at all), so it doesn't especially bother me any longer. I imagine @andreimatei is in a similar boat.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
GoCommand cmd/go NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests