diff --git a/scripts/TestConfigure.sh b/scripts/TestConfigure.sh
index 28055b5..f206bd5 100755
--- a/scripts/TestConfigure.sh
+++ b/scripts/TestConfigure.sh
@@ -14,43 +14,63 @@ function build_notest {
function build {
make -s clean
make -sj`nproc`
- HootTest --quick
+ HootTest --quick --parallel `nproc`
make -s clean
}
# Try a lot of the configure combinations to see if there is a broken .pro file.
-echo "### 01. --without-cppunit"
+echo "#######################################################################"
+echo "### 01. --without-cppunit #"
+echo "#######################################################################"
./configure -q --without-cppunit && build_notest
-echo "### 02. --without-newmat"
+echo "#######################################################################"
+echo "### 02. --without-newmat #"
+echo "#######################################################################"
./configure -q --without-newmat && build
-echo "### 03. --with-services"
-./configure -q --with-services && build
-
-echo "### 04. --without-cppunit --without-newmat"
-./configure -q --without-cppunit --without-newmat && build_notest
-
-echo "### 05. --without-cppunit --without-newmat --with-services"
-./configure -q --without-cppunit --without-newmat --with-services && build_notest
-
-echo "### 06. --without-newmat --with-services"
-./configure -q --without-newmat --with-services && build
-
-echo "### 07. ./configure -q"
+echo "#######################################################################"
+echo "### 03. --with-services #"
+echo "#######################################################################"
+./configure -q --with-services && build
+
+echo "#######################################################################"
+echo "### 04. --without-cppunit --without-newmat #"
+echo "#######################################################################"
+./configure -q --without-cppunit --without-newmat && build_notest
+
+echo "#######################################################################"
+echo "### 05. --without-cppunit --without-newmat --with-services #"
+echo "#######################################################################"
+./configure -q --without-cppunit --without-newmat --with-services && build_notest
+
+echo "#######################################################################"
+echo "### 06. --without-newmat --with-services #"
+echo "#######################################################################"
+./configure -q --without-newmat --with-services && build
+
+echo "#######################################################################"
+echo "### 07. ./configure -q #"
+echo "#######################################################################"
./configure -q
-echo "### 08. --without-cppunit --without-newmat --with-services --with-rnd"
-./configure -q --without-cppunit --without-newmat --with-services --with-rnd && build_notest
+echo "#######################################################################"
+echo "### 08. --without-cppunit --without-newmat --with-services --with-rnd #"
+echo "#######################################################################"
+./configure -q --without-cppunit --without-newmat --with-services --with-rnd && build_notest
-echo "### 09. --without-newmat --without-log4cxx --with-services --with-rnd"
-./configure -q --without-newmat --with-services --with-rnd && build
+echo "#######################################################################"
+echo "### 09. --without-newmat --with-services --with-rnd #"
+echo "#######################################################################"
+./configure -q --without-newmat --with-services --with-rnd && build
-echo "### 10. --with-rnd"
+echo "#######################################################################"
+echo "### 10. --with-rnd #"
+echo "#######################################################################"
./configure -q --with-rnd && build
-echo "############"
-echo "# Success! #"
-echo "############"
+echo "#######################################################################"
+echo "# Success! #"
+echo "#######################################################################"
exit 0