run_tests.sh 218 Bytes
Newer Older
1 2 3 4 5 6 7 8
#!/usr/bin/env bash

mkdir cmake-build-release
cd cmake-build-release
cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DTHREAD_SANITIZER=OFF
make

# run the actual tests
9
echo "Running tests..."
10
./bin/tests
11
echo "...tests passed!"