Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
59451: ccl/storageccl: skip TestEncryptDecrypt under race r=pbardea a=adityamaru

Refs: cockroachdb#59417

Reason: flaky test

Generated by bin/skip-test.

Release justification: non-production code changes

Release note: None

Co-authored-by: Aditya Maru <[email protected]>
  • Loading branch information
craig[bot] and adityamaru committed Jan 27, 2021
2 parents f7c5898 + 81346bc commit a36c594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/ccl/storageccl/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ go_test(
"//pkg/storage/enginepb",
"//pkg/testutils",
"//pkg/testutils/serverutils",
"//pkg/testutils/skip",
"//pkg/testutils/sqlutils",
"//pkg/testutils/testcluster",
"//pkg/util/encoding",
Expand Down
2 changes: 2 additions & 0 deletions pkg/ccl/storageccl/encryption_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"io/ioutil"
"testing"

"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/util/humanizeutil"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/randutil"
Expand All @@ -23,6 +24,7 @@ import (

func TestEncryptDecrypt(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.UnderRaceWithIssue(t, 59417, "flaky test")

passphrase := []byte("this is a a key")
salt, err := GenerateSalt()
Expand Down

0 comments on commit a36c594

Please sign in to comment.