-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
testing: fuzzer aborts with "fuzzing process hung or terminated unexpectedly while minimizing: EOF" #52569
Comments
@rolandshoemaker can you give this a look? I read this as the fuzzer found a sporadic issue that will not repeat itself on command, but maybe something else is going on. |
I am experiencing the same behavior. The data included in testdata successfully passes the unit test, so data is not the issue. |
Seeing the same issue. It fails consistently, except when using Edit: Further investigation leads me to believe that the cause of this is an OOM condition. Limiting memory use appears to fix this issue. |
How did you limit memory use? Do you mean reducing the memory the test itself uses, or some more general limit? I'm also running into this error on windows-amd64 and linux-amd64 with a Go build based on f4becf1, recent
Edit: Since posting, I've been able to reproduce the OOM killer causing this error on Linux by running with very little available memory in a VM. We've also been able to fix it by changing the fuzz tests themselves to use less memory. I was under the impression the memory usage of the fuzz test infra was the problem, but it seems (at least partially) under our control. I do wish the error were a little clearer--EOF is one of those errors where at first glance it seems to be about files, but it could actually be just about anything. |
I'm also seeing the same issue on Linux. go version
go env
I'm not quite sure I'm experiencing OOM, I run |
Might be related to #56238 |
@lmb I'm supposing the EOF is related to the process getting killed due to OOM. At least I experienced an OOM when running the example you posted initially:
|
See: golang/go#52569
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I ran the following in the https://github.com/cilium/ebpf repo at d4e048f8a6d8d213b452c61573bd8150c35b557c.
What did you expect to see?
I expected the command given to reproduce the issue to result in a crash.
What did you see instead?
The contents of the file are:
The text was updated successfully, but these errors were encountered: