Skip to content
Snippets Groups Projects
linux_run_tests.sh 171 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    
    cd ../..
    
    ##############
    # UNIT TESTS #
    ##############
    
    David Vojtek's avatar
    David Vojtek committed
    cd build/unit-tests
    ls
    for f in Debug/*_test; do
    
        ${f} || exit 1
    
    David Vojtek's avatar
    David Vojtek committed
    cd ../..
    
    cd build_scripts/linux