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

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