Updates #35471
Change-Id: Ie06c442e405a267eb909621e1205444b6a00fda1
Reviewed-on: https://go-review.googlesource.com/c/go/+/206197
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: David du Colombier <0intro@gmail.com>
import (
"bytes"
"encoding/binary"
+ "internal/testenv"
"math/rand"
"path/filepath"
+ "runtime"
"testing"
"time"
}
func TestTransform(t *testing.T) {
+ if runtime.GOOS == "plan9" {
+ testenv.SkipFlaky(t, 35471)
+ }
+
dir, remove := mustTempDir(t)
defer remove()
path := filepath.Join(dir, "blob.bin")