mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
195 B
Plaintext
6 lines
195 B
Plaintext
11 years ago
|
#!/bin/bash
|
||
|
|
||
|
bash scripts/test_configure.sh && ./objs/srs_utest
|
||
|
ret=$?; if [[ 0 -ne $ret ]]; then echo "configure test and utest failed."; exit $ret; fi
|
||
|
echo "configure test and utest success";
|