Files
jsix_import/test.sh
Justin C. Miller 8490472581 [kutil] Fix failing heap allocator tests
The tests clearly haven't even been built in a while. I've added a
helper script to the project root. Also added a kassert() handler that
will allow tests to catch or fail on asserts.
2020-09-07 16:56:07 -07:00

11 lines
167 B
Bash
Executable File

#!/usr/bin/env bash
set -o errexit
ROOT=$(realpath $(dirname $0))
BUILD="${ROOT}/build"
TESTS="${BUILD}/native/tests"
ninja -C "${BUILD}" "${TESTS}"
"${TESTS}" $*