From b418ace3528460e668d089bb2c300c3f070c2648 Mon Sep 17 00:00:00 2001 From: Bo Wang Date: Thu, 15 Sep 2022 11:14:48 -0700 Subject: [PATCH] Disable PersistentCacheTierTest.BasicTest (#10683) Summary: Disable this flaky test since PersistentCache is not used. Pull Request resolved: https://github.com/facebook/rocksdb/pull/10683 Test Plan: Unit Tests Reviewed By: cbi42 Differential Revision: D39545974 Pulled By: gitbw95 fbshipit-source-id: ac53e96f6ba880e7612e325eb5ff22ee2799efed --- utilities/persistent_cache/persistent_cache_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/persistent_cache/persistent_cache_test.cc b/utilities/persistent_cache/persistent_cache_test.cc index 5fd8a0d24..f511c9450 100644 --- a/utilities/persistent_cache/persistent_cache_test.cc +++ b/utilities/persistent_cache/persistent_cache_test.cc @@ -140,7 +140,7 @@ TEST_F(PersistentCacheTierTest, DISABLED_BlockCacheInsertWithFileCreateError) { // Travis is unable to handle the normal version of the tests running out of // fds, out of space and timeouts. This is an easier version of the test // specifically written for Travis -TEST_F(PersistentCacheTierTest, BasicTest) { +TEST_F(PersistentCacheTierTest, DISABLED_BasicTest) { cache_ = std::make_shared(); RunInsertTest(/*nthreads=*/1, /*max_keys=*/1024);