]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
test/store_test: disable validation in SpilloverTest. 34943/head
authorIgor Fedotov <ifedotov@suse.com>
Thu, 2 Jul 2020 13:28:13 +0000 (16:28 +0300)
committerIgor Fedotov <ifedotov@suse.com>
Thu, 2 Jul 2020 13:28:13 +0000 (16:28 +0300)
Disabling any validation/assertion for now as it looks like
we're unable to 100% force RocksDB to spillover.

This test case was just a starting point for other cases
verifying spillover elimination feature. Hence not a big deal
in disabling.

Leaving test case hoping to fix that one day though.

Signed-off-by: Igor Fedotov <ifedotov@suse.com>
src/test/objectstore/store_test.cc

index 269fd8fde6ce285f78a5560baa3f26a29890bcad..57988b25340400450e5fd5db1094d90a45421bfe 100644 (file)
@@ -8278,8 +8278,11 @@ TEST_P(StoreTestSpecificAUSize, SpilloverTest) {
       //using lower 300MB threshold just to be safe enough
       std::cout << "db_used:" << logger->get(l_bluefs_db_used_bytes) << std::endl;
       std::cout << "slow_used:" << logger->get(l_bluefs_slow_used_bytes) << std::endl;
-      ASSERT_GE(logger->get(l_bluefs_slow_used_bytes), 16 * 1024 * 1024);
 
+      // Disabling any validation/assertion for now as it looks like
+      // we're unable to 100% force RocksDB to spillover.
+      // Leaving test case hoping to fix that one day though.
+      //ASSERT_GE(logger->get(l_bluefs_slow_used_bytes), 16 * 1024 * 1024);
     }
   );
 }