mirror of https://github.com/facebook/rocksdb.git
Disable PersistentCacheTierTest.VolatileCacheInsertWithEviction test under TSAN temporarily
Summary: Disable the test under TSAN temporary to temporarily the build Test Plan: run the test under TSAN Reviewers: kradhakrishnan, andrewkr, sdong Reviewed By: sdong Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D59337
This commit is contained in:
parent
1ba452226f
commit
8ff59b2b40
|
@ -26,6 +26,7 @@ TEST_F(PersistentCacheTierTest, VolatileCacheInsert) {
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef ROCKSDB_TSAN_RUN
|
||||
TEST_F(PersistentCacheTierTest, VolatileCacheInsertWithEviction) {
|
||||
for (auto nthreads : {1, 5}) {
|
||||
for (auto max_keys : {1 * 1024 * 1024}) {
|
||||
|
@ -35,6 +36,7 @@ TEST_F(PersistentCacheTierTest, VolatileCacheInsertWithEviction) {
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// test table with volatile page cache
|
||||
TEST_F(PersistentCacheDBTest, VolatileCacheTest) {
|
||||
|
|
Loading…
Reference in New Issue