From: Sage Weil Date: Thu, 10 Aug 2017 14:41:47 +0000 (-0400) Subject: ceph_test_objectstore: drop expect regex X-Git-Tag: v13.0.0~126^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F16968%2Fhead;p=ceph.git ceph_test_objectstore: drop expect regex If logging is enabled (as it now is in teuthology) this won't match the forked output. Signed-off-by: Sage Weil --- diff --git a/src/test/objectstore/store_test.cc b/src/test/objectstore/store_test.cc index 8980aac37c4..aa59522407b 100644 --- a/src/test/objectstore/store_test.cc +++ b/src/test/objectstore/store_test.cc @@ -2849,7 +2849,7 @@ TEST_P(StoreTest, SimpleCloneTest) { t.remove_collection(cid); cerr << "Invalid rm coll" << std::endl; PrCtl unset_dumpable; - EXPECT_DEATH(apply_transaction(store, &osr, std::move(t)), ".*Directory not empty.*"); + EXPECT_DEATH(apply_transaction(store, &osr, std::move(t)), ""); } { ObjectStore::Transaction t; @@ -2871,7 +2871,7 @@ TEST_P(StoreTest, SimpleCloneTest) { t.remove(cid, hoid2); t.remove_collection(cid); PrCtl unset_dumpable; - EXPECT_DEATH(apply_transaction(store, &osr, std::move(t)), ".*Directory not empty.*"); + EXPECT_DEATH(apply_transaction(store, &osr, std::move(t)), ""); } { ObjectStore::Transaction t;