sapling/eden/fs/store/test/RocksDbLocalStoreTest.cpp
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

28 lines
716 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#include "eden/fs/store/RocksDbLocalStore.h"
#include "eden/fs/store/test/LocalStoreTest.h"
namespace {
using namespace facebook::eden;
LocalStoreImplResult makeRocksDbLocalStore(FaultInjector* faultInjector) {
auto tempDir = makeTempDir();
auto store = std::make_unique<RocksDbLocalStore>(
AbsolutePathPiece{tempDir.path().string()}, faultInjector);
return {std::move(tempDir), std::move(store)};
}
INSTANTIATE_TEST_CASE_P(
RocksDB,
LocalStoreTest,
::testing::Values(makeRocksDbLocalStore));
} // namespace