blob: 79d1b32b3627f90217632eeee793040315469275 (
plain)
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
|
#!/bin/sh
###########################
# 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 automaticly. 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 > output
# version of this script
version=1
fixed=0
LANG="C"
export LANG
die(){
echo "testcurl: ENDING HERE"
exit 1
}
if [ -f setup ]; then
. "./setup"
infixed="$fixed"
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 desrciption"
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
echo "testcurl: STARTING HERE"
echo "testcurl: NAME = $name"
echo "testcurl: EMAIL = $email"
echo "testcurl: DESC = $desc"
echo "testcurl: CONFOPTS = $confopts"
echo "testcurl: version = $version"
echo "testcurl: 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 curl -a -d curl/CVS ]; then
echo "testcurl: curl is verified to be a fine source dir"
else
echo "testcurl: curl is not a source dir checked out from CVS!"
die
fi
build="build-$$"
# remove any previous left-overs
rm -rf build-*
# create a dir to build in
mkdir $build
if [ -d $build ]; then
echo "testcurl: build dir $build was created fine"
else
echo "testcurl: failed to create dir $build"
die
fi
# get in the curl source tree root
cd curl
echo "testcurl: update from CVS"
# update quietly to the latest CVS
cvs -Q up -dP 2>&1
cvsstat=$?
echo "testcurl: cvs returned: $cvsstat"
if [ "$cvsstat" -ne "0" ]; then
echo "testcurl: failed to update from CVS, exiting"
die
fi
# figure out the current collected CVS status
newstat="../allcvs.log"
oldstat="../oldcvs.log"
find . -name Entries -exec cat {} \; > "$newstat"
if [ -r "$oldstat" ]; then
# there is a previous cvs stat file to compare with
if { cmp "$oldstat" "$newstat"; } then
echo "testcurl: this is the same CVS status as before"
echo "testcurl: ALREADY TESTED THIS SETUP BEFORE"
#die
else
echo "testcurl: there has been a change in the CVS"
fi
fi
# remove possible left-overs from the past
rm -f configure
rm -rf autom4te.cache
# generate the build files
./buildconf 2>&1
if [ -f configure ]; then
echo "testcurl: configure created"
else
echo "testcurl: no configure created"
die
fi
# change to build dir
cd "../$build"
# run configure script
../curl/configure $confopts 2>&1
if [ -f lib/Makefile ]; then
echo "testcurl: configure seems to have finished fine"
else
echo "testcurl: configure didn't work"
die
fi
echo "testcurl: display lib/config.h"
grep "^ *#" lib/config.h
echo "testcurl: now run make"
make -i 2>&1 | sed -e "s:$pwd::g"
if [ -f src/curl ]; then
echo "testcurl: src/curl was created fine"
else
echo "testcurl: src/curl was not created"
die
fi
echo "testcurl: now run make test-full"
make test-full 2>&1 | sed -e "s:$pwd::g" | tee build.log
if { grep "^TESTFAIL:" build.log; } then
echo "testcurl: the tests were not successful"
else
echo "testcurl: the tests were successful!"
fi
# store the cvs status for the next time
mv $newstat $oldstat
# get out of dir
cd ..
# delete build dir
rm -rf "$build"
die
|