Skip to content
Snippets Groups Projects
linux_run_tests.sh 151 B
Newer Older
#!/bin/sh

cd ../..

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