mirror of https://github.com/ceph/go-ceph
rbd: enable test cases with ceph issues that have been fixed
Ceph issue https://tracker.ceph.com/issues/43178 has been fixed for a while with backports. No reason not to enable these test cases now. Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
0130c60281
commit
76bca17e43
|
@ -1550,14 +1550,12 @@ func TestOpenImageById(t *testing.T) {
|
|||
require.Error(t, err)
|
||||
})
|
||||
t.Run("ReadWriteBadId", func(t *testing.T) {
|
||||
t.Skip("segfaults due to https://tracker.ceph.com/issues/43178")
|
||||
// phony id
|
||||
img, err := OpenImageById(ioctx, "102f00aaabbbccd", NoSnapshot)
|
||||
require.Error(t, err)
|
||||
require.Nil(t, img)
|
||||
})
|
||||
t.Run("ReadOnlyBadId", func(t *testing.T) {
|
||||
t.Skip("segfaults due to https://tracker.ceph.com/issues/43178")
|
||||
// phony id
|
||||
img, err := OpenImageByIdReadOnly(ioctx, "blubb", NoSnapshot)
|
||||
require.Error(t, err)
|
||||
|
|
Loading…
Reference in New Issue