Remove upper bound for rate limiting unit test
This commit is contained in:
parent
fd27001072
commit
552c49f0f4
@ -490,7 +490,9 @@ ColumnFamilyOptions* ColumnFamilyOptions::OptimizeForPointLookup() {
|
||||
BlockBasedTableOptions block_based_options;
|
||||
block_based_options.index_type = BlockBasedTableOptions::kBinarySearch;
|
||||
table_factory.reset(new BlockBasedTableFactory(block_based_options));
|
||||
#ifndef ROCKSDB_LITE
|
||||
memtable_factory.reset(NewHashLinkListRepFactory());
|
||||
#endif
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -918,7 +918,6 @@ TEST(BackupableDBTest, RateLimiting) {
|
||||
auto rate_limited_backup_time = (bytes_written * kMicrosPerSec) /
|
||||
backupable_options_->backup_rate_limit;
|
||||
ASSERT_GT(backup_time, 0.9 * rate_limited_backup_time);
|
||||
ASSERT_LT(backup_time, 2.5 * rate_limited_backup_time);
|
||||
|
||||
CloseBackupableDB();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user