Don't execute the seal recovery tests on ENT. (#18841)
* Don't execute the seal recovery tests on OSS. * correct go:build syntax
This commit is contained in:
parent
f4eed5cb31
commit
af7df08921
|
@ -0,0 +1,10 @@
|
|||
//go:build !enterprise
|
||||
|
||||
package sealmigration
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestSealMigration_TransitToShamir_Recovery(t *testing.T) {
|
||||
t.Parallel()
|
||||
testVariousBackends(t, ParamTestSealMigrationTransitToShamir_Recovery, BasePort_TransitToShamir_Recovery, true)
|
||||
}
|
|
@ -59,11 +59,6 @@ func TestSealMigration_TransitToShamir_Post14(t *testing.T) {
|
|||
testVariousBackends(t, ParamTestSealMigrationTransitToShamir_Post14, BasePort_TransitToShamir_Post14, true)
|
||||
}
|
||||
|
||||
func TestSealMigration_TransitToShamir_Recovery(t *testing.T) {
|
||||
t.Parallel()
|
||||
testVariousBackends(t, ParamTestSealMigrationTransitToShamir_Recovery, BasePort_TransitToShamir_Recovery, true)
|
||||
}
|
||||
|
||||
// TestSealMigration_TransitToTransit tests transit-to-shamir seal
|
||||
// migration, using the post-1.4 method of bring individual nodes in the
|
||||
// cluster to do the migration.
|
||||
|
|
Loading…
Reference in New Issue