1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-04-03 09:39:47 +00:00
2018-07-05 20:48:04 -04:00

23 lines
453 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
here=$(dirname "${BASH_SOURCE[0]}")
set -x
"$here"/test-non-existent
"$here"/test-bad-create-table
"$here"/test-unsupported
"$here"/test-supported
"$here"/test-queries
"$here"/test-random
if [ -v COVERAGE ]; then
# Do at most 10 seconds of failmalloc testing
"$here"/test-failmalloc || true
now=$(date +%s)
in_10s=$((now+10))
while [ $(date +%s) -lt $in_10s ]; do
"$here"/test-failmalloc || true
done
fi