Skip to content
Snippets Groups Projects
ci_run_tests.sh 123 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    
    ##############
    # UNIT TESTS #
    ##############
    for f in build/unit-tests/bin/*_test; do
        ${f} || exit -1
    done