-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/compile/internal/test: prevent failures in go tool dist test -msan #64573
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
base: master
Are you sure you want to change the base?
cmd/compile/internal/test: prevent failures in go tool dist test -msan #64573
Conversation
… -msan This test is already marked with !race, but when running the tests with -msan it allocates memory which throws off the test assertions. Marking it !msan as well. For golang#64256
This PR (HEAD: d725cc9) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/547758. Important tips:
|
Message from qiulaidongfeng: Patch Set 1: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/547758. |
Message from Mauri de Souza Meneguzzo: Patch Set 1: Run-TryBot+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/547758. |
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/547758. |
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/547758. |
Message from Gopher Robot: Patch Set 1: TryBot-Result-1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/547758. |
Message from Mauri de Souza Meneguzzo: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/547758. |
This test is already marked with !race, but when running the tests with
-msan it allocates memory which throws off the test assertions. Marking
it !msan as well.
For #64256