X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c447d4a79f653bbf2c172a0a715d30db896a4a32..87892d98eac028934480c378748cfb65a780d1cc:/services/keepstore/volume_unix_test.go diff --git a/services/keepstore/volume_unix_test.go b/services/keepstore/volume_unix_test.go index 35cf457d8f..4fd6a30e63 100644 --- a/services/keepstore/volume_unix_test.go +++ b/services/keepstore/volume_unix_test.go @@ -85,6 +85,24 @@ func TestUnixVolumeWithGenericTestsSerialized(t *testing.T) { }) } +// serialize = false; readonly = false +func TestUnixVolumeManagerWithGenericTests(t *testing.T) { + DoGenericVolumeFunctionalTests(t, func(t *testing.T) []TestableVolume { + vols := make([]Volume, 2) + testableUnixVols := make([]TestableVolume, 2) + + for i := range vols { + v := NewTestableUnixVolume(t, false, false) + vols[i] = v + testableUnixVols[i] = v + } + + KeepVM = MakeRRVolumeManager(vols) + + return testableUnixVols + }) +} + func TestGetNotFound(t *testing.T) { v := NewTestableUnixVolume(t, false, false) defer v.Teardown()