From: Katie Hockman Date: Thu, 20 May 2021 21:42:06 +0000 (-0400) Subject: [dev.fuzz] internal/fuzz: remove old TODO X-Git-Tag: go1.18beta1~1282^2~53 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=60f16d7f19c2787e22bda198b7595035c1702f06;p=gostls13.git [dev.fuzz] internal/fuzz: remove old TODO Change-Id: I997934ebcde0dee9017c85a0572597855d73cf64 Reviewed-on: https://go-review.googlesource.com/c/go/+/321569 Trust: Katie Hockman Run-TryBot: Katie Hockman TryBot-Result: Go Bot Reviewed-by: Roland Shoemaker Reviewed-by: Jay Conrod --- diff --git a/src/internal/fuzz/worker.go b/src/internal/fuzz/worker.go index 91ae2de1b1..c2cacf986b 100644 --- a/src/internal/fuzz/worker.go +++ b/src/internal/fuzz/worker.go @@ -320,10 +320,6 @@ func (w *worker) start() (err error) { cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr - // TODO(jayconrod): set up shared memory between the coordinator and worker to - // transfer values and coverage data. If the worker crashes, we need to be - // able to find the value that caused the crash. - // Create the "fuzz_in" and "fuzz_out" pipes so we can communicate with // the worker. We don't use stdin and stdout, since the test binary may // do something else with those.