Author: jfrederic.clere(a)jboss.com
Date: 2009-01-22 02:46:40 -0500 (Thu, 22 Jan 2009)
New Revision: 2197
Modified:
trunk/build/daemon/buildmdc.sh
Log:
Run the tests
Modified: trunk/build/daemon/buildmdc.sh
===================================================================
--- trunk/build/daemon/buildmdc.sh 2009-01-22 07:38:12 UTC (rev 2196)
+++ trunk/build/daemon/buildmdc.sh 2009-01-22 07:46:40 UTC (rev 2197)
@@ -29,6 +29,7 @@
echo ""
build_ssl=true
+do_test=true
while [ "x" != "x$1" ]
do
@@ -41,13 +42,23 @@
-no-ssl)
build_ssl=false
;;
+ -no-test)
+ do_test=false
+ ;;
esac
shift
done
(cd ../unix
- if $build_ssl; then
- ./build.sh mod_cluster -ssl -cache
+ if $do_test; then
+ if $build_ssl; then
+ ./build.sh mod_cluster -ssl -cache -test
+ fi
+ ./build.sh mod_cluster -cache -test
+ else
+ if $build_ssl; then
+ ./build.sh mod_cluster -ssl -cache
+ fi
+ ./build.sh mod_cluster -cache
fi
- ./build.sh mod_cluster -cache
)