1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
|
#!/bin/sh
#***************************************************************************
# _ _ ____ _
# Project ___| | | | _ \| |
# / __| | | | |_) | |
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
# Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://curl.haxx.se/docs/copyright.html.
#
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
# copies of the Software, and permit persons to whom the Software is
# furnished to do so, under the terms of the COPYING file.
#
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
# KIND, either express or implied.
#
# $Id$
###########################################################################
###########################
# What is This Script?
###########################
# testcurl.sh is the master script to use for automatic testing of CVS-curl.
# This is written for the purpose of being run from a crontab job or similar
# at a regular interval. The output will be suitable to be mailed automaticly
# to "curl-autocompile@haxx.se" to be dealt with automatically. The most
# current build status (with a resonable backlog) will be published on the
# curl site, at http://curl.haxx.se/auto/
# USAGE:
# testcurl.sh [curl-daily-name] > output
# Updated:
# v1.1 6-Nov-03 - to take an optional parameter, the name of a daily-build
# directory. If present, build from that directory, otherwise
# perform a normal CVS build.
# version of this script
version='$Revision$'
fixed=0
# Determine if we're running from CVS or a canned copy of curl
if [ "$#" -ge "1" -a "$1" ]; then
CURLDIR=$1
CVS=0
else
CURLDIR="curl"
CVS=1
fi
LANG="C"
export LANG
log() {
text=$1
if test -n "$text"; then
echo "testcurl: $text"
fi
}
die(){
text=$1
log "$text"
cd $pwd # cd back to the original root dir
if test -n "$pwd/$build"; then
# we have a build directory name, remove the dir
log "removing the $build dir"
rm -rf "$pwd/$build"
fi
if test -r "$buildlog"; then
# we have a build log output file left, remove it
log "removing the $buildlogname file"
rm -rf "$buildlog"
fi
log "ENDING HERE" # last line logged!
exit 1
}
if [ -f setup ]; then
. "./setup"
infixed="$fixed"
else
infixed=0 # so that "additional args to configure" works properly first time...
fi
if [ -z "$name" ]; then
echo "please enter your name"
read name
fixed="1"
fi
if [ -z "$email" ]; then
echo "please enter your contact email address"
read email
fixed="2"
fi
if [ -z "$desc" ]; then
echo "please enter a one line system description"
read desc
fixed="3"
fi
if [ -z "$confopts" ]; then
if [ $infixed -lt 4 ]; then
echo "please enter your additional arguments to configure"
echo "examples: --with-ssl --enable-debug --enable-ipv6 --with-krb4"
read confopts
fixed="4"
fi
fi
if [ "$fixed" -gt "0" ]; then
echo "name='$name'" > setup
echo "email='$email'" >> setup
echo "desc='$desc'" >> setup
echo "confopts='$confopts'" >> setup
echo "fixed='$fixed'" >> setup
fi
log "STARTING HERE" # first line logged
log "NAME = $name"
log "EMAIL = $email"
log "DESC = $desc"
log "CONFOPTS = $confopts"
log "CFLAGS = $CFLAGS"
log "CC = $CC"
log "version = $version"
log "date = `date -u`"
# Make $pwd to become the path without newline. We'll use that in order to cut
# off that path from all possible logs and error messages etc.
ipwd=`pwd`
pwd=`echo $ipwd | sed -e 's/$//g'`
if [ -d "$CURLDIR" ]; then
if [ $CVS -eq 1 -a -d $CURLDIR/CVS ]; then
log "curl is verified to be a fine source dir"
# remove the generated sources to force them to be re-generated each
# time we run this test
rm -f $CURLDIR/lib/getdate.c
rm -f $CURLDIR/src/hugehelp.c
elif [ $CVS -eq 0 -a -f $CURLDIR/testcurl.sh ]; then
log "curl is verified to be a fine daily source dir"
else
die "curl is not a daily source dir or checked out from CVS!"
fi
fi
build="build-$$"
buildlogname="buildlog-$$"
buildlog="$pwd/$buildlogname"
# remove any previous left-overs
rm -rf build-*
rm -rf buildlog-*
# this is to remove old build logs that ended up in the wrong dir
rm -rf $CURLDIR/buildlog-*
# create a dir to build in
mkdir $build
if [ -d $build ]; then
log "build dir $build was created fine"
else
die "failed to create dir $build"
fi
# get in the curl source tree root
cd $CURLDIR
# Do the CVS thing, or not...
if [ $CVS -eq 1 ]; then
# this is a temporary fix to make things work again, remove later
log "remove ares/aclocal.m4"
rm -f ares/aclocal.m4
log "update from CVS"
cvsup() {
# update quietly to the latest CVS
log "run cvs up"
cvs -Q up -dP 2>&1
cvsstat=$?
# return (1 - RETURNVALUE) so that errors return 0 while goodness
# returns 1
return `expr 1 - $cvsstat`
}
att="0"
while cvsup; do
att=`expr $att + 1`
log "failed CVS update attempt number $att."
if [ $att -gt 10 ]; then
cvsstat="111"
break # get out of the loop
fi
sleep 5
done
if [ "$cvsstat" -ne "0" ]; then
die "failed to update from CVS ($cvsstat), exiting"
fi
# remove possible left-overs from the past
rm -f configure
rm -rf autom4te.cache
# generate the build files
log "invoke buildconf, but filter off the silly aclocal warnings"
./buildconf 2>&1 | grep -v "warning: underquoted definition of" | tee $buildlog
if { grep "^buildconf: OK" $buildlog >/dev/null 2>&1; } then
log "buildconf was successful"
else
die "buildconf was NOT successful"
fi
fi
if [ -f configure ]; then
log "configure created"
else
die "no configure created"
fi
# change to build dir
cd "../$build"
# run configure script
../$CURLDIR/configure $confopts 2>&1
if [ -f lib/Makefile ]; then
log "configure seems to have finished fine"
else
die "configure didn't work"
fi
log "display lib/config.h"
grep "^ *#" lib/config.h
log "display src/config.h"
grep "^ *#" src/config.h
if { grep "define USE_ARES" lib/config.h; } then
log "setup to build ares"
log "build ares"
cd ares
make 2>&1 | sed -e "s:$pwd::g"
if [ -f libcares.a ]; then
log "ares is now built successfully"
else
log "ares build failed"
fi
# cd back to the curl build dir
cd ..
fi
log "run make"
make -i 2>&1 | sed -e "s:$pwd::g"
if [ -f src/curl ]; then
log "src/curl was created fine"
else
die "src/curl was not created"
fi
log "display curl --version output"
./src/curl --version
log "run make test-full"
make test-full 2>&1 | sed -e "s:$pwd::g" | tee $buildlog
if { grep "^TEST" $buildlog >/dev/null 2>&1; } then
log "tests were run"
else
die "test suite failure"
fi
if { grep "^TESTFAIL:" $buildlog >/dev/null 2>&1; } then
log "the tests were not successful"
else
log "the tests were successful!"
fi
# die to cleanup
die "ending nicely"
|