We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a5be5 commit f0aff14Copy full SHA for f0aff14
src/tools/pgtest
@@ -23,10 +23,15 @@ then PGCLEAN=clean
23
else shift
24
fi
25
26
+rm -f tmp_install/log/install.log
27
+
28
# Run "make check" and store return code in $TMP/ret.
29
# Display output but also capture it in $TMP/0.
30
($MAKE "$@" $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) | tee $TMP/0
31
32
+# Grab possible warnings from install.log
33
+[ -e tmp_install/log/install.log ] && cat tmp_install/log/install.log >> $TMP/0
34
35
# If success, display warnings
36
if [ $(cat $TMP/ret) -eq 0 ]
37
then cat $TMP/0 |
0 commit comments