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