summaryrefslogtreecommitdiff
path: root/maint
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-12-15 18:20:50 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-12-15 18:20:50 +0000
commit8746c7fff1c3516111554ce7360173df4b460fdf (patch)
treeae8840f93d7728364bb556b49d17b1b6b23dee67 /maint
parent014878cf93b8c26a4277db2d12a3aceb56b58809 (diff)
downloadpcre2-8746c7fff1c3516111554ce7360173df4b460fdf.tar.gz
Fix minor glitch.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@467 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'maint')
-rwxr-xr-xmaint/ManyConfigTests21
1 files changed, 12 insertions, 9 deletions
diff --git a/maint/ManyConfigTests b/maint/ManyConfigTests
index ce4692c..42a94da 100755
--- a/maint/ManyConfigTests
+++ b/maint/ManyConfigTests
@@ -127,20 +127,20 @@ runtest()
# causes the message
#
# ar: `u' modifier ignored since `D' is the default (see `U')
-#
+#
# to be output while linking. This triggers an unwanted error report from this
# script, because it expects no stderr output while making. To get round this
# we filter the stderr output through sed, removing all occurrences of the
# above lines. Just for paranoia, check that sed is available before doing
# this.
-
+
echo "Making"
make -j >/dev/null 2>teststderrM
- makeRC=$?
+ makeRC=$?
if command -v sed >/dev/null 2>&1 ; then
sed "/\`u' modifier ignored since \`D' is the default/ d" \
teststderrM > teststderrMM
- mv -f teststderrMM teststderrM
+ mv -f teststderrMM teststderrM
fi
if [ $makeRC -ne 0 -o -s teststderrM ]; then
echo " "
@@ -382,6 +382,10 @@ if [ -f Makefile ]; then
fi
fi
+echo "---------- End of tests in the source directory ----------"
+echo "Removing teststdoutM and teststderrM"
+rm -rf teststdoutM teststderrM
+
if [ $usetmp -ne 0 ]; then
echo "---------- Tests in the $tmp directory ----------"
srcdir=`pwd`
@@ -407,12 +411,11 @@ if [ $usetmp -ne 0 ]; then
do
runtest
done
-fi
-echo "Removing $tmp"
-rm -rf $tmp
-rm -rf teststdoutM teststderrM
+ echo "Removing $tmp"
+ rm -rf $tmp
+fi
-echo "All done"
+echo "---------- All done ----------"
# End