]> Cypherpunks repositories - gostls13.git/commitdiff
[dev.fuzz] internal/fuzz: remove old TODO
authorKatie Hockman <katie@golang.org>
Thu, 20 May 2021 21:42:06 +0000 (17:42 -0400)
committerKatie Hockman <katie@golang.org>
Fri, 21 May 2021 14:37:19 +0000 (14:37 +0000)
Change-Id: I997934ebcde0dee9017c85a0572597855d73cf64
Reviewed-on: https://go-review.googlesource.com/c/go/+/321569
Trust: Katie Hockman <katie@golang.org>
Run-TryBot: Katie Hockman <katie@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
Reviewed-by: Jay Conrod <jayconrod@google.com>
src/internal/fuzz/worker.go

index 91ae2de1b18d1f3cfdd8927e66a33220f46afd14..c2cacf986b0cc1e846c80b7fc2421469425814a3 100644 (file)
@@ -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.