summaryrefslogtreecommitdiffstats
path: root/src/rocksdb/buckifier/rocks_test_runner.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/rocksdb/buckifier/rocks_test_runner.sh')
-rwxr-xr-xsrc/rocksdb/buckifier/rocks_test_runner.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rocksdb/buckifier/rocks_test_runner.sh b/src/rocksdb/buckifier/rocks_test_runner.sh
new file mode 100755
index 00000000..baca6c2e
--- /dev/null
+++ b/src/rocksdb/buckifier/rocks_test_runner.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+# 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"