Revision 74748611a884d47a5581d7f84f9709579bdb6382 authored by Siying Dong on 13 February 2018, 20:05:36 UTC, committed by Facebook Github Bot on 13 February 2018, 20:18:07 UTC
Summary:
Now we suppress alignment UBSAN error as a whole. Suppressing 3-way CRC and murmurhash feels a better idea than turning off alignment check as a whole.
Closes https://github.com/facebook/rocksdb/pull/3495

Differential Revision: D6971273

Pulled By: siying

fbshipit-source-id: 080b59fed6df494b9f622ef7cb5d42d39e6a8cdf
1 parent 3c380fd
Raw File
rocks_test_runner.sh
#!/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"
back to top