mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 03:41:55 +00:00
6 lines
195 B
Text
6 lines
195 B
Text
|
#!/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";
|