wgengine/magicsock: prevent logging while running benchmarks

This commit is contained in:
Josh Bleecher Snyder 2021-02-11 11:54:58 -08:00
parent 34ffd4f7c6
commit 851366432a

View File

@ -1552,6 +1552,7 @@ func addTestEndpoint(conn *Conn, sendConn net.PacketConn) (tailcfg.NodeKey, tail
func BenchmarkReceiveFrom(b *testing.B) {
conn := newNonLegacyTestConn(b)
defer conn.Close()
conn.logf = logger.Discard
sendConn, err := net.ListenPacket("udp4", "127.0.0.1:0")
if err != nil {