diff --git a/trunk/scripts/srs.test b/trunk/scripts/srs.test index da122ebf8..5e7a573c1 100755 --- a/trunk/scripts/srs.test +++ b/trunk/scripts/srs.test @@ -9,3 +9,4 @@ echo "params is: $params" bash scripts/test_configure.sh $params && ./objs/srs_utest ret=$?; if [[ 0 -ne $ret ]]; then echo "configure test and utest failed."; exit $ret; fi echo "configure test and utest success"; + diff --git a/trunk/scripts/test_configure.sh b/trunk/scripts/test_configure.sh index a1dd7a6e2..e2626e098 100755 --- a/trunk/scripts/test_configure.sh +++ b/trunk/scripts/test_configure.sh @@ -272,13 +272,4 @@ ok_msg "test \" ${item} \"" ret=$?; if [[ $ret -ne 0 ]]; then failed_msg "test \" ${item} \" failed. ret=$ret"; exit $ret; fi ok_msg "test \" ${item} \" success" -####################################################################################################### -####################################################################################################### -####################################################################################################### -item="./configure --without-utest" -ok_msg "test \" ${item} \"" -($item && make $params) >>$log 2>&1 -ret=$?; if [[ $ret -ne 0 ]]; then failed_msg "test \" ${item} \" failed. ret=$ret"; exit $ret; fi -ok_msg "test \" ${item} \" success" - echo "success"