]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph_test_objectstore: skip BlueStoreUnshareBlobTest with SMR 42762/head
authorSage Weil <sage@newdream.net>
Wed, 20 Oct 2021 13:51:20 +0000 (08:51 -0500)
committerSage Weil <sage@newdream.net>
Fri, 29 Oct 2021 13:56:43 +0000 (09:56 -0400)
non-deterministic

Signed-off-by: Sage Weil <sage@newdream.net>
src/test/objectstore/store_test.cc

index 1c44f99eba5966c12f1618b72963126b2c488159..5b7e86e3735221ce71a8b0d656cb83e88f791433 100644 (file)
@@ -3615,6 +3615,10 @@ TEST_P(StoreTest, SimpleCloneRangeTest) {
 TEST_P(StoreTest, BlueStoreUnshareBlobTest) {
   if (string(GetParam()) != "bluestore")
     return;
+  if (smr) {
+    cout << "SKIP: non-deterministic behavior with smr" << std::endl;
+    return;
+  }
   int r;
   coll_t cid;
   auto ch = store->create_new_collection(cid);