| 97 | } |
| 98 | |
| 99 | void TestEnv::SetTmpFileMgrArgs(const vector<string>& tmp_dirs, bool one_dir_per_device, |
| 100 | const string& compression, bool punch_holes) { |
| 101 | have_tmp_file_mgr_args_ = true; |
| 102 | tmp_dirs_ = tmp_dirs; |
| 103 | one_tmp_dir_per_device_ = one_dir_per_device; |
| 104 | tmp_file_mgr_compression_ = compression; |
| 105 | tmp_file_mgr_punch_holes_ = punch_holes; |
| 106 | } |
| 107 | |
| 108 | void TestEnv::SetBufferPoolArgs(int64_t min_buffer_len, int64_t capacity) { |
| 109 | buffer_pool_min_buffer_len_ = min_buffer_len; |
no outgoing calls
no test coverage detected