https://github.com/facebook/rocksdb
Raw File
Tip revision: c8d8c1b452dd8db74765507532d9426abeb0c40b authored by Vijay Nadimpalli on 19 July 2019, 20:01:44 UTC
reusing the existing methods in db_impl and version_set
Tip revision: c8d8c1b
rocks_test_runner.sh
#!/usr/bin/env bash
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
# Create a tmp directory for the test to use
TEST_DIR=$(mktemp -d /dev/shm/fbcode_rocksdb_XXXXXXX)
# shellcheck disable=SC2068
TEST_TMPDIR="$TEST_DIR" $@ && rm -rf "$TEST_DIR"
back to top