Commit 16bf0d5e authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

crypto/cipher: disable broken js/wasm test from nodejs v8 to v12 upgrade

Updates #31812

Change-Id: Id9898f89205c116009e25033afb5b9026594e80f
Reviewed-on: https://go-review.googlesource.com/c/go/+/175099Reviewed-by: default avatarAndrew Bonventre <andybons@golang.org>
parent 5aee621c
...@@ -9,11 +9,16 @@ import ( ...@@ -9,11 +9,16 @@ import (
"crypto/cipher" "crypto/cipher"
"crypto/rand" "crypto/rand"
"fmt" "fmt"
"internal/testenv"
"io" "io"
"runtime"
"testing" "testing"
) )
func TestXOR(t *testing.T) { func TestXOR(t *testing.T) {
if runtime.GOOS == "js" {
testenv.SkipFlaky(t, 31812)
}
for j := 1; j <= 1024; j++ { for j := 1; j <= 1024; j++ {
for alignP := 0; alignP < 2; alignP++ { for alignP := 0; alignP < 2; alignP++ {
for alignQ := 0; alignQ < 2; alignQ++ { for alignQ := 0; alignQ < 2; alignQ++ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment