Revision c32f27223b0b208b06ebfc8e28610465d6c58880 authored by Yi Wu on 11 July 2017, 21:05:39 UTC, committed by Facebook Github Bot on 11 July 2017, 21:14:38 UTC
Summary:
* Create info log before db open to make blob db able to log to LOG file.
* Properly destroy blob db.
Closes https://github.com/facebook/rocksdb/pull/2567

Differential Revision: D5400034

Pulled By: yiwu-arbug

fbshipit-source-id: a49cfaf4b5c67d42d4cbb872bd5a9441828c17ce
1 parent fcd99d2
Raw File
rocks_test_runner.sh
#!/bin/bash
# Create a tmp directory for the test to use
TEST_DIR=$(mktemp -d /dev/shm/fbcode_rocksdb_XXXXXXX)
TEST_TMPDIR="$TEST_DIR" $@ && rm -rf "$TEST_DIR"
back to top