mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 11:51:57 +00:00
5 lines
195 B
Bash
Executable file
5 lines
195 B
Bash
Executable file
#!/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";
|