seaweedfs/weed/storage/disk_location_ec_test.go
2019-05-28 21:29:07 -07:00

18 lines
281 B
Go

package storage
import (
"testing"
)
func TestLoadingEcShards(t *testing.T) {
dl := NewDiskLocation("./erasure_coding", 100)
err := dl.loadAllEcShards()
if err != nil {
t.Errorf("load all ec shards: %v", err)
}
if len(dl.ecVolumes) != 1 {
t.Errorf("loading err")
}
}