Alejandro Lopez
341fe1688f
All checks were successful
ci/woodpecker/push/pre-commit Pipeline was successful
This aims to reduce the usage of chmod hackery to induce or simulate OS-related failures. Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
17 lines
336 B
Go
17 lines
336 B
Go
package blobstor
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/storagetest"
|
|
)
|
|
|
|
func TestGeneric(t *testing.T) {
|
|
|
|
newMetabase := func(t *testing.T) storagetest.Component {
|
|
return New(
|
|
WithStorages(defaultStorages(t.TempDir(), 128)))
|
|
}
|
|
|
|
storagetest.TestAll(t, newMetabase)
|
|
}
|