| 2230 | } |
| 2231 | |
| 2232 | std::string MakeKey(unsigned int num) { |
| 2233 | char buf[30]; |
| 2234 | snprintf(buf, sizeof(buf), "%016u", num); |
| 2235 | return std::string(buf); |
| 2236 | } |
| 2237 | |
| 2238 | void BM_LogAndApply(int iters, int num_base_files) { |
| 2239 | std::string dbname = test::TmpDir() + "/leveldb_test_benchmark"; |
no outgoing calls
no test coverage detected