Skip to content

Commit

Permalink
skip snapshot copy test for GPD block storage (#2045)
Browse files Browse the repository at this point in the history
  • Loading branch information
kale-amruta committed May 3, 2023
1 parent a3ec049 commit 11cde2d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/blockstorage/blockstorage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ func (s *BlockStorageProviderSuite) TestCreateSnapshot(c *C) {
}

func (s *BlockStorageProviderSuite) TestSnapshotCopy(c *C) {
if s.storageType == blockstorage.TypeGPD {
c.Skip("Skip snapshot copy test for GPD provider since the SnapshotCopy is yet to be implemented for GPD ")
}
var snap *blockstorage.Snapshot
var err error
srcSnapshot := s.createSnapshot(c)
Expand Down

0 comments on commit 11cde2d

Please sign in to comment.