Skip to content
Snippets Groups Projects
ci_run_tests.sh 151 B
#!/bin/sh

##############
# UNIT TESTS #
##############
for f in build/unit-tests/*_test; do
    echo "Test ${f} starting..."
    ${f} || exit 1
done