Created
January 25, 2018 11:29
-
-
Save lmb/fa334561f6b427853a91e52f6d286438 to your computer and use it in GitHub Desktop.
Test macOS fixes for LMDB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euf -o pipefail | |
pushd "$(mktemp -d)" | |
echo Working in $PWD | |
git clone https://github.com/lmb/lmdb.git | |
cd lmdb/libraries/liblmdb | |
mkdir testdb | |
make mtest7 | |
echo | |
echo | |
uname -a | |
./mtest7 | |
echo Done | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment