summaryrefslogtreecommitdiffstats
path: root/run-tests.sh
diff options
context:
space:
mode:
authorMilind Changire <mchangir@redhat.com>2018-01-26 16:07:59 +0530
committerAmar Tumballi <amarts@redhat.com>2018-01-30 05:59:09 +0000
commit016165c4110b2bd5bba5c64b7a3d09e9bc4928c2 (patch)
treefa9da4003456ce71d7c267b73bf243fcc16f62c7 /run-tests.sh
parentd25b6065469eb978d40450b5aebcf5711fb50205 (diff)
tests: merge stdout and stderr output
Add -m argument to 'prove' command-line. Fix xxhsum.c debugging output to keep 'prove' happy. Change-Id: I03485d5f5e43ae4ce454a275ec98bc18384ed00c Signed-off-by: Milind Changire <mchangir@redhat.com>
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-xrun-tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests.sh b/run-tests.sh
index dbf4a5e3b3c..017248cbb63 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -268,7 +268,7 @@ function run_tests()
total_run_tests=$((total_run_tests+1))
echo "[$(date +%H:%M:%S)] Running tests in file $t"
starttime="$(date +%s)"
- prove -vfe '/bin/bash' $t
+ prove -vmfe '/bin/bash' $t
TMP_RES=$?
ELAPSEDTIMEMAP[$t]=`expr $(date +%s) - $starttime`
if [ ${TMP_RES} -ne 0 ] && [ "x${retry}" = "xyes" ] ; then
@@ -280,7 +280,7 @@ function run_tests()
echo " * we got some spurious failures *"
echo " *********************************"
echo ""
- prove -vfe '/bin/bash' $t
+ prove -vmfe '/bin/bash' $t
TMP_RES=$?
fi
if [ ${TMP_RES} -ne 0 ] ; then