diff --git a/trunk/scripts/test_configure.sh b/trunk/scripts/test_configure.sh index 7da802f88..a8e1c652f 100755 --- a/trunk/scripts/test_configure.sh +++ b/trunk/scripts/test_configure.sh @@ -188,6 +188,12 @@ 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 --demo" +ok_msg "test \" ${item} \"" +(./configure --demo && make) >>$log 2>&1 +ret=$?; if [[ $ret -ne 0 ]]; then failed_msg "test \" ${item} \" failed. ret=$ret"; exit $ret; fi +ok_msg "test \" ${item} \" success" + item="./configure --full" ok_msg "test \" ${item} \"" (./configure --full && make) >>$log 2>&1