travis_test.sh 151 B

1234567891011
  1. #!/bin/sh
  2. # Execute the unit tests in Travis CI
  3. RETURN_CODE=0
  4. cd tests
  5. ./test_suite.sh
  6. if [ $? -ne 0 ]; then
  7. RETURN_CODE=1
  8. fi
  9. exit $RETURN_CODE