diff --git a/bin/cmakehdf5 b/bin/cmakehdf5
index c5f1f9976c..d384fe3bc1 100755
--- a/bin/cmakehdf5
+++ b/bin/cmakehdf5
@@ -172,4 +172,13 @@ EOF
 
 
 # Run ctest
-ctest -S $cfgfile -C Release -O testhdf.log -VV
+date
+ctest -S $cfgfile -C Release -O testhdf.log
+exit_code=$?
+if [ $exit_code = 0 ]; then
+    echo Complete without error
+else
+    echo Error countered
+fi
+date
+exit $exit_code