env_windows_test_helper.h 787 B

12345678910111213141516171819202122232425
  1. // Copyright 2018 (c) The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. #ifndef STORAGE_LEVELDB_UTIL_ENV_WINDOWS_TEST_HELPER_H_
  5. #define STORAGE_LEVELDB_UTIL_ENV_WINDOWS_TEST_HELPER_H_
  6. namespace leveldb {
  7. class EnvWindowsTest;
  8. // A helper for the Windows Env to facilitate testing.
  9. class EnvWindowsTestHelper {
  10. private:
  11. friend class CorruptionTest;
  12. friend class EnvWindowsTest;
  13. // Set the maximum number of read-only files that will be mapped via mmap.
  14. // Must be called before creating an Env.
  15. static void SetReadOnlyMMapLimit(int limit);
  16. };
  17. } // namespace leveldb
  18. #endif // STORAGE_LEVELDB_UTIL_ENV_WINDOWS_TEST_HELPER_H_