srs.test 338 B

123456789101112
  1. #!/bin/bash
  2. echo "Usage: $0 [-jN]"
  3. echo " -jN The make jobs, for example, -j8 to use 8cpu to make"
  4. params="$@"
  5. echo "params is: $params"
  6. bash scripts/test_configure.sh $params && ./objs/srs_utest
  7. ret=$?; if [[ 0 -ne $ret ]]; then echo "configure test and utest failed."; exit $ret; fi
  8. echo "configure test and utest success";