blob: 3196f6a1ba33a0c2a1a8bfad0fdff3e60bb6e2f5 [file] [log] [blame]
#!/bin/bash
# This script expects to be invoked from the base fio directory.
set -eu
main() {
[ "${CI_TARGET_BUILD}" = "android" ] && return 0
echo "Running smoke tests..."
make test
}
main