-
Notifications
You must be signed in to change notification settings - Fork 18k
testing/iotest: add ErrReader #34741
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
Conversation
This PR (HEAD: 50b271e) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/199501 to see it. Tip: You can toggle comments from me using the |
Message from Gobot Gobot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be During May-July and Nov-Jan the Go project is in a code freeze, during which Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
4a7ed1f
to
0f992b9
Compare
This PR (HEAD: 9851fc0) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/199501 to see it. Tip: You can toggle comments from me using the |
It's not clear if I need to do anything for this to be reviewed 🤔 |
Message from Ian Lance Taylor: Patch Set 2: Code-Review-2 Thanks. New API like this should go through the proposal process. See https://golang.org/s/proposal. Marking temporary -2 as this should not be submitted unless a proposal is written and accepted. Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Ian Lance Taylor: Patch Set 2: See also https://golang.org/doc/faq#x_in_std. Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
This PR (HEAD: 107dc44) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/199501 to see it. Tip: You can toggle comments from me using the |
Proposal was accepted #38781 🎊 |
This PR (HEAD: 4733ead) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/199501 to see it. Tip: You can toggle comments from me using the |
Message from Emmanuel Odeke: Patch Set 5: (7 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
This PR (HEAD: 8f71624) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/199501 to see it. Tip: You can toggle comments from me using the |
Message from Emmanuel Odeke: Patch Set 9: Run-TryBot+1 Code-Review+2 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Gobot Gobot: Patch Set 9: TryBots beginning. Status page: https://farmer.golang.org/try?commit=ab496a14 Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Gobot Gobot: Patch Set 9: Build is still in progress... Other builds still in progress; subsequent failure notices suppressed until final report. Consult https://build.golang.org/ to see whether they are new failures. Keep in mind that TryBots currently test exactly your git commit, without rebasing. If your commit's git parent is old, the failure might've already been fixed. Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Emmanuel Odeke: Patch Set 9: Hey Carlos, did you run the changes locally and test? Seems like in the tests we already had the same type declared. Please remove it from log_test.go and keep its definition in the non test .go file and then adjust tests accordingly. Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This PR (HEAD: 4e232b1) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/199501 to see it. Tip: You can toggle comments from me using the |
Message from Carlos Alexandro Becker: Patch Set 9: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Emmanuel Odeke: Patch Set 10: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Gobot Gobot: Patch Set 10: TryBots beginning. Status page: https://farmer.golang.org/try?commit=0d78f6bc Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
Message from Gobot Gobot: Patch Set 10: TryBot-Result+1 TryBots are happy. Please don’t reply on this GitHub thread. Visit golang.org/cl/199501. |
This PR is being closed because golang.org/cl/199501 has been merged. |
Adds an io.Reader that always returns 0 and a non-nil error. Fixes #38781 Change-Id: I56bd124de07bc8809e77c6cfaab33a1e32cfe2ee GitHub-Last-Rev: 4e232b1 GitHub-Pull-Request: #34741 Reviewed-on: https://go-review.googlesource.com/c/go/+/199501 Run-TryBot: Emmanuel Odeke <emm.odeke@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
Adds an io.Reader that always returns 0 and a non-nil error.
Fixes #38781