blob: 43b3ce441512281c77fa97266d937daf11543cae [file] [log] [blame]
Neal Norwitz461aa5b2006-01-02 20:07:16 +00001#!/bin/sh
2
3## Script to build and test the latest python from svn. It basically
4## does this:
5## svn up ; ./configure ; make ; make test ; make install ; cd Doc ; make
6##
7## Logs are kept and rsync'ed to the host. If there are test failure(s),
8## information about the failure(s) is mailed.
9##
10## This script is run on the PSF's machine as user neal via crontab.
11##
12## Yes, this script would probably be easier in python, but then
13## there's a bootstrap problem. What if Python doesn't build?
14##
15## This script should be fairly clean Bourne shell, ie not too many
16## bash-isms. We should try to keep it portable to other Unixes.
17## Even though it will probably only run on Linux. I'm sure there are
18## several GNU-isms currently (date +%s and readlink).
19##
20## Perhaps this script should be broken up into 2 (or more) components.
21## Building doc is orthogonal to the rest of the python build/test.
22##
23
24## FIXME: we should detect test hangs (eg, if they take more than 45 minutes)
25
26## FIXME: we should run valgrind
27## FIXME: we should run code coverage
28
29## Utilities invoked in this script include:
Neal Norwitzd3a58672006-01-02 23:22:41 +000030## basename, date, dirname, expr, grep, readlink, uname
Neal Norwitz461aa5b2006-01-02 20:07:16 +000031## cksum, make, mutt, rsync, svn
32
Neal Norwitz461aa5b2006-01-02 20:07:16 +000033## remember where did we started from
34DIR=`dirname $0`
35if [ "$DIR" = "" ]; then
36 DIR="."
37fi
38
39## make directory absolute
40DIR=`readlink -f $DIR`
Neal Norwitzd3a58672006-01-02 23:22:41 +000041FULLPATHNAME="$DIR/`basename $0`"
Neal Norwitz461aa5b2006-01-02 20:07:16 +000042## we want Misc/..
43DIR=`dirname $DIR`
44
45## Configurable options
46
47FAILURE_SUBJECT="Python Regression Test Failures"
Neal Norwitz461aa5b2006-01-02 20:07:16 +000048#FAILURE_MAILTO="YOUR_ACCOUNT@gmail.com"
Neal Norwitzf415d5f2006-02-19 18:48:19 +000049FAILURE_MAILTO="python-checkins@python.org"
Neal Norwitz5d08bd72007-04-20 05:20:38 +000050#FAILURE_CC="optional--uncomment and set to desired address"
Neal Norwitz461aa5b2006-01-02 20:07:16 +000051
52REMOTE_SYSTEM="neal@dinsdale.python.org"
Georg Brandl4cf8ac42008-10-04 08:13:56 +000053REMOTE_DIR="/data/ftp.python.org/pub/www.python.org/doc/current"
54REMOTE_DIR_DIST="/data/ftp.python.org/pub/python/doc/current"
Neal Norwitz461aa5b2006-01-02 20:07:16 +000055RESULT_FILE="$DIR/build/index.html"
Neal Norwitzdaeaf692008-10-03 04:10:46 +000056INSTALL_DIR="/tmp/python-test-2.6/local"
Neal Norwitz461aa5b2006-01-02 20:07:16 +000057RSYNC_OPTS="-aC -e ssh"
58
Neal Norwitz524b59b2006-06-27 04:09:13 +000059# Always run the installed version of Python.
60PYTHON=$INSTALL_DIR/bin/python
61
62# Python options and regression test program that should always be run.
Neal Norwitzf2fcfa32006-08-18 06:14:52 +000063REGRTEST_ARGS="-E -tt $INSTALL_DIR/lib/python2.6/test/regrtest.py"
Neal Norwitz524b59b2006-06-27 04:09:13 +000064
Neal Norwitz461aa5b2006-01-02 20:07:16 +000065REFLOG="build/reflog.txt.out"
Neal Norwitzee6d23e2006-04-12 05:56:00 +000066# These tests are not stable and falsely report leaks sometimes.
Neal Norwitzf415d5f2006-02-19 18:48:19 +000067# The entire leak report will be mailed if any test not in this list leaks.
Neal Norwitza1f9b7f2006-04-06 07:58:59 +000068# Note: test_XXX (none currently) really leak, but are disabled
Neal Norwitz770a8002006-03-17 04:52:38 +000069# so we don't send spam. Any test which really leaks should only
70# be listed here if there are also test cases under Lib/test/leakers.
Neal Norwitza403e412008-08-24 17:29:53 +000071LEAKY_TESTS="test_(asynchat|cmd_line|docxmlrpc|dumbdbm|file|ftplib|httpservers|imaplib|popen2|socket|smtplib|sys|telnetlib|threadedtempfile|threading|threadsignals|urllib2_localnet|xmlrpc)"
Neal Norwitzee6d23e2006-04-12 05:56:00 +000072
73# Skip these tests altogether when looking for leaks. These tests
74# do not need to be stored above in LEAKY_TESTS too.
75# test_compiler almost never finishes with the same number of refs
76# since it depends on other modules, skip it.
77# test_logging causes hangs, skip it.
78LEAKY_SKIPS="-x test_compiler test_logging"
Neal Norwitzf415d5f2006-02-19 18:48:19 +000079
Neal Norwitz770a8002006-03-17 04:52:38 +000080# Change this flag to "yes" for old releases to only update/build the docs.
Neal Norwitzdaeaf692008-10-03 04:10:46 +000081BUILD_DISABLED="yes"
Neal Norwitz461aa5b2006-01-02 20:07:16 +000082
83## utility functions
84current_time() {
85 date +%s
86}
87
88update_status() {
89 now=`current_time`
90 time=`expr $now - $3`
91 echo "<li><a href=\"$2\">$1</a> <font size=\"-1\">($time seconds)</font></li>" >> $RESULT_FILE
92}
93
Skip Montanaro04735172008-02-15 19:03:59 +000094place_summary_first() {
95 testf=$1
96 sed -n '/^[0-9][0-9]* tests OK\./,$p' < $testf \
Neal Norwitz64984a82008-03-05 05:49:03 +000097 | egrep -v '\[[0-9]+ refs\]' > $testf.tmp
Skip Montanaro04735172008-02-15 19:03:59 +000098 echo "" >> $testf.tmp
99 cat $testf >> $testf.tmp
100 mv $testf.tmp $testf
101}
102
103count_failures () {
104 testf=$1
105 n=`grep -ic " failed:" $testf`
106 if [ $n -eq 1 ] ; then
Neal Norwitz64984a82008-03-05 05:49:03 +0000107 n=`grep " failed:" $testf | sed -e 's/ .*//'`
Skip Montanaro04735172008-02-15 19:03:59 +0000108 fi
109 echo $n
110}
111
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000112mail_on_failure() {
113 if [ "$NUM_FAILURES" != "0" ]; then
Neal Norwitz5d08bd72007-04-20 05:20:38 +0000114 dest=$FAILURE_MAILTO
115 # FAILURE_CC is optional.
116 if [ "$FAILURE_CC" != "" ]; then
117 dest="$dest -c $FAILURE_CC"
118 fi
Neal Norwitz64984a82008-03-05 05:49:03 +0000119 if [ "x$3" != "x" ] ; then
120 (echo "More important issues:"
121 echo "----------------------"
122 egrep -v "$3" < $2
123 echo ""
124 echo "Less important issues:"
125 echo "----------------------"
126 egrep "$3" < $2)
Skip Montanaroee29c3f2008-02-02 19:11:57 +0000127 else
Neal Norwitz64984a82008-03-05 05:49:03 +0000128 cat $2
129 fi | mutt -s "$FAILURE_SUBJECT $1 ($NUM_FAILURES)" $dest
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000130 fi
131}
132
133## setup
134cd $DIR
135mkdir -p build
136rm -f $RESULT_FILE build/*.out
137rm -rf $INSTALL_DIR
138
139## create results file
140TITLE="Automated Python Build Results"
Neal Norwitzb8967592006-01-16 04:37:22 +0000141echo "<html>" >> $RESULT_FILE
142echo " <head>" >> $RESULT_FILE
143echo " <title>$TITLE</title>" >> $RESULT_FILE
144echo " <meta http-equiv=\"refresh\" content=\"43200\">" >> $RESULT_FILE
145echo " </head>" >> $RESULT_FILE
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000146echo "<body>" >> $RESULT_FILE
147echo "<h2>Automated Python Build Results</h2>" >> $RESULT_FILE
148echo "<table>" >> $RESULT_FILE
149echo " <tr>" >> $RESULT_FILE
150echo " <td>Built on:</td><td>`date`</td>" >> $RESULT_FILE
151echo " </tr><tr>" >> $RESULT_FILE
152echo " <td>Hostname:</td><td>`uname -n`</td>" >> $RESULT_FILE
153echo " </tr><tr>" >> $RESULT_FILE
154echo " <td>Platform:</td><td>`uname -srmpo`</td>" >> $RESULT_FILE
155echo " </tr>" >> $RESULT_FILE
156echo "</table>" >> $RESULT_FILE
157echo "<ul>" >> $RESULT_FILE
158
159## update, build, and test
160ORIG_CHECKSUM=`cksum $FULLPATHNAME`
161F=svn-update.out
162start=`current_time`
163svn update >& build/$F
164err=$?
165update_status "Updating" "$F" $start
Neal Norwitz88b78d82006-02-14 08:14:16 +0000166if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000167 ## FIXME: we should check if this file has changed.
168 ## If it has changed, we should re-run the script to pick up changes.
169 if [ "$ORIG_CHECKSUM" != "$ORIG_CHECKSUM" ]; then
170 exec $FULLPATHNAME $@
171 fi
172
173 F=svn-stat.out
174 start=`current_time`
175 svn stat >& build/$F
176 ## ignore some of the diffs
177 NUM_DIFFS=`egrep -vc '^. (@test|db_home|Lib/test/(regrtest\.py|db_home))$' build/$F`
178 update_status "svn stat ($NUM_DIFFS possibly important diffs)" "$F" $start
179
180 F=configure.out
181 start=`current_time`
182 ./configure --prefix=$INSTALL_DIR --with-pydebug >& build/$F
183 err=$?
184 update_status "Configuring" "$F" $start
185 if [ $err = 0 ]; then
186 F=make.out
187 start=`current_time`
188 make >& build/$F
189 err=$?
190 warnings=`grep warning build/$F | egrep -vc "te?mpnam(_r|)' is dangerous,"`
191 update_status "Building ($warnings warnings)" "$F" $start
192 if [ $err = 0 ]; then
Neal Norwitzd19a4d42006-01-02 22:10:10 +0000193 ## make install
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000194 F=make-install.out
195 start=`current_time`
196 make install >& build/$F
197 update_status "Installing" "$F" $start
198
Neal Norwitz9815f8b2006-07-26 04:00:18 +0000199 if [ ! -x $PYTHON ]; then
200 ln -s ${PYTHON}2.* $PYTHON
201 fi
202
Neal Norwitzd19a4d42006-01-02 22:10:10 +0000203 ## make and run basic tests
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000204 F=make-test.out
205 start=`current_time`
Neal Norwitz38bdfaa2008-03-05 05:50:20 +0000206 $PYTHON $REGRTEST_ARGS -u urlfetch >& build/$F
Skip Montanaro04735172008-02-15 19:03:59 +0000207 NUM_FAILURES=`count_failures build/$F`
208 place_summary_first build/$F
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000209 update_status "Testing basics ($NUM_FAILURES failures)" "$F" $start
Neal Norwitz02c408d2006-01-03 02:18:01 +0000210 mail_on_failure "basics" build/$F
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000211
Neal Norwitz524b59b2006-06-27 04:09:13 +0000212 F=make-test-opt.out
213 start=`current_time`
Neal Norwitz38bdfaa2008-03-05 05:50:20 +0000214 $PYTHON -O $REGRTEST_ARGS -u urlfetch >& build/$F
Skip Montanaro04735172008-02-15 19:03:59 +0000215 NUM_FAILURES=`count_failures build/$F`
216 place_summary_first build/$F
Neal Norwitz524b59b2006-06-27 04:09:13 +0000217 update_status "Testing opt ($NUM_FAILURES failures)" "$F" $start
218 mail_on_failure "opt" build/$F
219
Neal Norwitzd19a4d42006-01-02 22:10:10 +0000220 ## run the tests looking for leaks
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000221 F=make-test-refleak.out
222 start=`current_time`
Neal Norwitz0f77da32006-04-17 01:48:41 +0000223 ## ensure that the reflog exists so the grep doesn't fail
224 touch $REFLOG
Neal Norwitz38bdfaa2008-03-05 05:50:20 +0000225 $PYTHON $REGRTEST_ARGS -R 4:3:$REFLOG -u network,urlfetch $LEAKY_SKIPS >& build/$F
Neal Norwitz64984a82008-03-05 05:49:03 +0000226 LEAK_PAT="($LEAKY_TESTS|sum=0)"
Skip Montanaroee29c3f2008-02-02 19:11:57 +0000227 NUM_FAILURES=`egrep -vc "$LEAK_PAT" $REFLOG`
Skip Montanaro04735172008-02-15 19:03:59 +0000228 place_summary_first build/$F
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000229 update_status "Testing refleaks ($NUM_FAILURES failures)" "$F" $start
Skip Montanaroee29c3f2008-02-02 19:11:57 +0000230 mail_on_failure "refleak" $REFLOG "$LEAK_PAT"
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000231
Neal Norwitzd19a4d42006-01-02 22:10:10 +0000232 ## now try to run all the tests
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000233 F=make-testall.out
234 start=`current_time`
Neal Norwitzd19a4d42006-01-02 22:10:10 +0000235 ## skip curses when running from cron since there's no terminal
236 ## skip sound since it's not setup on the PSF box (/dev/dsp)
Neal Norwitz524b59b2006-06-27 04:09:13 +0000237 $PYTHON $REGRTEST_ARGS -uall -x test_curses test_linuxaudiodev test_ossaudiodev >& build/$F
Skip Montanaro04735172008-02-15 19:03:59 +0000238 NUM_FAILURES=`count_failures build/$F`
239 place_summary_first build/$F
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000240 update_status "Testing all except curses and sound ($NUM_FAILURES failures)" "$F" $start
Neal Norwitzd3a58672006-01-02 23:22:41 +0000241 mail_on_failure "all" build/$F
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000242 fi
243 fi
244fi
245
246
247## make doc
Neal Norwitz524b59b2006-06-27 04:09:13 +0000248cd $DIR/Doc
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000249F="make-doc.out"
250start=`current_time`
Neal Norwitz5c404ae2007-08-16 05:16:09 +0000251# XXX(nnorwitz): For now, keep the code that checks for a conflicted file until
252# after the first release of 2.6a1 or 3.0a1. At that point, it will be clear
253# if there will be a similar problem with the new doc system.
254
Neal Norwitz5d08bd72007-04-20 05:20:38 +0000255# Doc/commontex/boilerplate.tex is expected to always have an outstanding
256# modification for the date. When a release is cut, a conflict occurs.
257# This allows us to detect this problem and not try to build the docs
258# which will definitely fail with a conflict.
Neal Norwitz7def3e02007-08-16 05:07:03 +0000259#CONFLICTED_FILE=commontex/boilerplate.tex
260#conflict_count=`grep -c "<<<" $CONFLICTED_FILE`
261conflict_count=0
Neal Norwitz5d08bd72007-04-20 05:20:38 +0000262if [ $conflict_count != 0 ]; then
263 echo "Conflict detected in $CONFLICTED_FILE. Doc build skipped." > ../build/$F
264 err=1
265else
Neal Norwitzb18f7d32009-01-05 04:08:06 +0000266 make checkout update html >& ../build/$F
Neal Norwitz5d08bd72007-04-20 05:20:38 +0000267 err=$?
268fi
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000269update_status "Making doc" "$F" $start
270if [ $err != 0 ]; then
271 NUM_FAILURES=1
272 mail_on_failure "doc" ../build/$F
273fi
274
Georg Brandl4cf8ac42008-10-04 08:13:56 +0000275F="make-doc-dist.out"
276start=`current_time`
277if [ $conflict_count == 0 ]; then
278 make dist >& ../build/$F
279 err=$?
280fi
281update_status "Making downloadable doc" "$F" $start
282if [ $err != 0 ]; then
283 NUM_FAILURES=1
284 mail_on_failure "doc dist" ../build/$F
285fi
286
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000287echo "</ul>" >> $RESULT_FILE
288echo "</body>" >> $RESULT_FILE
289echo "</html>" >> $RESULT_FILE
290
291## copy results
Neal Norwitz7def3e02007-08-16 05:07:03 +0000292rsync $RSYNC_OPTS build/html/* $REMOTE_SYSTEM:$REMOTE_DIR
Georg Brandl4cf8ac42008-10-04 08:13:56 +0000293rsync $RSYNC_OPTS dist/* $REMOTE_SYSTEM:$REMOTE_DIR_DIST
Neal Norwitz461aa5b2006-01-02 20:07:16 +0000294cd ../build
295rsync $RSYNC_OPTS index.html *.out $REMOTE_SYSTEM:$REMOTE_DIR/results/