2 #***************************************************************************
4 # Project ___| | | | _ \| |
6 # | (__| |_| | _ <| |___
7 # \___|\___/|_| \_\_____|
9 # Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
11 # This software is licensed as described in the file COPYING, which
12 # you should have received as part of this distribution. The terms
13 # are also available at http://curl.haxx.se/docs/copyright.html.
15 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 # copies of the Software, and permit persons to whom the Software is
17 # furnished to do so, under the terms of the COPYING file.
19 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 # KIND, either express or implied.
22 # $Id: testcurl.pl,v 1.1.1.1 2008-09-23 16:32:06 hoffman Exp $
23 ###########################################################################
25 ###########################
26 # What is This Script?
27 ###########################
29 # testcurl.pl is the master script to use for automatic testing of CVS-curl.
30 # This is written for the purpose of being run from a crontab job or similar
31 # at a regular interval. The output is suitable to be mailed to
32 # curl-autocompile@haxx.se to be dealt with automatically (make sure the
33 # subject includes the word "autobuild" as the mail gets silently discarded
34 # otherwise). The most current build status (with a resonable backlog) will
35 # be published on the curl site, at http://curl.haxx.se/auto/
38 # testcurl.pl [options] [curl-daily-name] > output
42 # --configure=[options] Configure options
43 # --crosscompile This is a crosscompile
44 # --desc=[desc] Description of your test system
45 # --email=[email] Set email address to report as
46 # --extvercmd=[command] Command to use for displaying version with cross compiles.
47 # --mktarball=[command] Command to run after completed test
48 # --name=[name] Set name to report as
49 # --nocvsup Don't update from CVS even though it is a CVS tree
50 # --nobuildconf Don't run buildconf
51 # --runtestopts=[options] Options to pass to runtests.pl
52 # --setup=[file name] File name to read setup from (deprecated)
53 # --target=[your os] Specify your target environment.
55 # if [curl-daily-name] is omitted, a 'curl' CVS directory is assumed.
62 # Turn on warnings (equivalent to -w, which can't be used with /usr/bin/env)
65 use vars
qw($version $fixed $infixed $CURLDIR $CVS $pwd $build $buildlog
66 $buildlogname $configurebuild $targetos $confsuffix $binext
68 use vars qw($name $email $desc $confopts $runtestopts $setupfile $mktarball
69 $extvercmd $nocvsup $nobuildconf $crosscompile $timestamp);
71 # version of this script
72 $version='$Revision: 1.1.1.1 $';
75 # Determine if we're running from CVS or a canned copy of curl,
76 # or if we got a specific target option or setup file option.
81 if ($ARGV[0] =~ /--target=/) {
82 $targetos = (split(/=/, shift @ARGV))[1];
84 elsif ($ARGV[0] =~ /--setup=/) {
85 $setupfile = (split(/=/, shift @ARGV))[1];
87 elsif ($ARGV[0] =~ /--extvercmd=/) {
88 $extvercmd = (split(/=/, shift @ARGV))[1];
90 elsif ($ARGV[0] =~ /--mktarball=/) {
91 $mktarball = (split(/=/, shift @ARGV))[1];
93 elsif ($ARGV[0] =~ /--name=/) {
94 $name = (split(/=/, shift @ARGV))[1];
96 elsif ($ARGV[0] =~ /--email=/) {
97 $email = (split(/=/, shift @ARGV))[1];
99 elsif ($ARGV[0] =~ /--desc=/) {
100 $desc = (split(/=/, shift @ARGV))[1];
102 elsif ($ARGV[0] =~ /--configure=/) {
103 $confopts = (split(/=/, shift @ARGV))[1];
105 elsif ($ARGV[0] =~ /--nocvsup/) {
109 elsif ($ARGV[0] =~ /--nobuildconf/) {
113 elsif ($ARGV[0] =~ /--crosscompile/) {
117 elsif ($ARGV[0] =~ /--runtestopts=/) {
118 $runtestopts = (split(/=/, shift @ARGV, 2))[1];
121 $CURLDIR=shift @ARGV;
126 # Do the platform-specific stuff here
130 $libext = '.la'; # .la since both libcurl and libcares are made with libtool
131 if ($^O eq 'MSWin32' || $targetos) {
133 # If no target defined on Win32 lets assume vc
136 if ($targetos =~ /vc/ || $targetos =~ /borland/) {
140 elsif ($targetos =~ /mingw32/) {
142 if ($^O eq 'MSWin32') {
146 elsif ($targetos =~ /netware/) {
149 if ($^O eq 'MSWin32') {
158 if (($^O eq 'MSWin32') &&
159 ($targetos =~ /vc/ || $targetos =~ /mingw32/ || $targetos =~ /borland/)) {
161 # Set these things only when building ON Windows and for Win32 platform.
162 # FOR Windows since we might be cross-compiling on another system. Non-
163 # Windows builds still default to configure-style builds with no confsuffix.
166 $confsuffix = '-win32';
174 if ($^O eq 'MSWin32') {
175 foreach (glob($target)) {
177 system("rd /s /q $_");
180 system("rm -rf $target");
185 my ($target, $fn) = @_;
200 print "testcurl: $text\n";
207 chdir $pwd; # cd back to the original root dir
209 if ($pwd && $build) {
210 # we have a build directory name, remove the dir
211 logit "removing the $build dir";
212 rmtree "$pwd/$build";
215 # we have a build log output file left, remove it
216 logit "removing the $buildlogname file";
219 logit "ENDING HERE"; # last line logged!
223 if (open(F, "$setupfile")) {
232 $infixed=0; # so that "additional args to configure" works properly first time...
236 print "please enter your name\n";
243 print "please enter your contact email address\n";
250 print "please enter a one line system description\n";
258 print "please enter your additional arguments to configure\n";
259 print "examples: --with-ssl --enable-debug --enable-ipv6 --with-krb4\n";
268 open(F, ">$setupfile") or die;
269 print F "name='$name'\n";
270 print F "email='$email'\n";
271 print F "desc='$desc'\n";
272 print F "confopts='$confopts'\n";
273 print F "fixed='$fixed'\n";
277 my $str1066os = 'o' x 1066;
279 # Set timestamp to the UTC this script is running. Its value might
280 # be changed later in the script to the value present in curlver.h
281 $timestamp = scalar(gmtime)." UTC";
283 logit "STARTING HERE"; # first line logged, for scripts to trigger on
284 logit 'TRANSFER CONTROL ==== 1120 CHAR LINE' . $str1066os . 'LINE_END';
285 logit "NAME = $name";
286 logit "EMAIL = $email";
287 logit "DESC = $desc";
288 logit "CONFOPTS = $confopts";
289 logit "CPPFLAGS = ".$ENV{CPPFLAGS};
290 logit "CFLAGS = ".$ENV{CFLAGS};
291 logit "LDFLAGS = ".$ENV{LDFLAGS};
292 logit "CC = ".$ENV{CC};
293 logit "target = ".$targetos;
294 logit "version = $version"; # script version
295 logit "date = $timestamp"; # When the test build starts
299 # Make $pwd to become the path without newline. We'll use that in order to cut
300 # off that path from all possible logs and error messages etc.
304 if ($CVS && -d "$CURLDIR/CVS") {
305 logit "$CURLDIR is verified to be a fine source dir";
306 # remove the generated sources to force them to be re-generated each
307 # time we run this test
308 unlink "$CURLDIR/src/hugehelp.c";
309 } elsif (!$CVS && -f "$CURLDIR/tests/testcurl.pl") {
310 logit "$CURLDIR is verified to be a fine daily source dir"
312 mydie "$CURLDIR is not a daily source dir or checked out from CVS!"
316 $buildlogname="buildlog-$$";
317 $buildlog="$pwd/$buildlogname";
319 # remove any previous left-overs
323 # this is to remove old build logs that ended up in the wrong dir
324 foreach (glob("$CURLDIR/buildlog-*")) { unlink $_; }
326 # create a dir to build in
330 logit "build dir $build was created fine";
332 mydie "failed to create dir $build";
335 # get in the curl source tree root
338 # Do the CVS thing, or not...
341 # this is a temporary fix to make things work again, remove later
342 logit "remove ares/aclocal.m4";
343 unlink "ares/aclocal.m4";
345 logit "update from CVS";
349 # update quietly to the latest CVS
351 logit "Skipping CVS update (--nocvsup)";
356 system("cvs -Q up -dP 2>&1");
361 # return !RETURNVALUE so that errors return 0 while goodness
369 logit "failed CVS update attempt number $att.";
372 last; # get out of the loop
378 mydie "failed to update from CVS ($cvsstat), exiting";
381 # Set timestamp to the UTC the CVS update took place.
382 $timestamp = scalar(gmtime)." UTC";
386 logit "told to not run buildconf";
388 elsif ($configurebuild) {
389 # remove possible left-overs from the past
391 unlink "autom4te.cache";
393 # generate the build files
394 logit "invoke buildconf, but filter off aclocal underquoted definition warnings";
395 open(F, "./buildconf 2>&1 |") or die;
396 open(LOG, ">$buildlog") or die;
398 next if /warning: underquoted definition of/;
405 if (grepfile("^buildconf: OK", $buildlog)) {
406 logit "buildconf was successful";
409 mydie "buildconf was NOT successful";
413 logit "buildconf was successful (dummy message)";
417 # Set timestamp to the one in curlver.h if this isn't a CVS test build.
418 if ((-f "include/curl/curlver.h") &&
419 (open(F, "<include/curl/curlver.h"))) {
422 if ($_ =~ /^\#define\s+LIBCURL_TIMESTAMP\s+\"(.+)\".*$/) {
423 my $stampstring = $1;
424 if ($stampstring !~ /CVS/) {
425 $stampstring =~ s/\s+UTC//;
426 $timestamp = $stampstring." UTC";
434 # Show timestamp we are using for this test build.
435 logit "timestamp = $timestamp";
437 if ($configurebuild) {
438 if (-f "configure") {
439 logit "configure created (at least it exists)";
441 mydie "no configure created/found";
444 logit "configure created (dummy message)"; # dummy message to feign success
451 $x='.exe' if ($^O eq 'MSWin32');
453 $s=';' if ($^O eq 'MSWin32');
455 my @pa = split($s, $p);
465 my $make = findinpath("gmake", "make", "nmake");
467 mydie "Couldn't find make in the PATH";
469 logit "going with $make as make";
471 # change to build dir
474 if ($configurebuild) {
475 # run configure script
476 print `../$CURLDIR/configure $confopts 2>&1`;
478 if (-f "lib/Makefile") {
479 logit "configure seems to have finished fine";
481 mydie "configure didn't work";
484 logit "copying files to build dir ...";
485 if (($^O eq 'MSWin32') && ($targetos !~ /netware/)) {
486 system("xcopy /s /q ..\\$CURLDIR .");
487 system("buildconf.bat");
489 elsif ($targetos =~ /netware/) {
490 system("cp -afr ../$CURLDIR/* .");
491 system("cp -af ../$CURLDIR/Makefile.dist Makefile");
492 system("$make -i -C lib -f Makefile.netware prebuild");
493 system("$make -i -C src -f Makefile.netware prebuild");
495 elsif ($^O eq 'linux') {
496 system("cp -afr ../$CURLDIR/* .");
497 system("cp -af ../$CURLDIR/Makefile.dist Makefile");
498 system("cp -af ../$CURLDIR/include/curl/curlbuild.h.dist ./include/curl/curlbuild.h");
499 system("$make -i -C lib -f Makefile.$targetos prebuild");
500 system("$make -i -C src -f Makefile.$targetos prebuild");
504 if(-f "./include/curl/curlbuild.h") {
505 logit "display include/curl/curlbuild.h";
506 if(open(F, "<./include/curl/curlbuild.h")) {
509 print $ll if(($ll =~ /^ *# *define/) && ($ll !~ /__CURL_CURLBUILD_H/));
515 mydie "no curlbuild.h created/found";
518 logit "display lib/config$confsuffix.h";
519 open(F, "lib/config$confsuffix.h") or die "lib/config$confsuffix.h: $!";
525 if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) {
526 logit "setup to build ares";
528 logit "display ares/config$confsuffix.h";
529 if(open(F, "ares/config$confsuffix.h")) {
539 if ($targetos && !$configurebuild) {
540 logit "$make -f Makefile.$targetos";
541 open(F, "$make -f Makefile.$targetos 2>&1 |") or die;
545 open(F, "$make 2>&1 |") or die;
553 if (-f "libcares$libext") {
554 logit "ares is now built successfully (libcares$libext)";
556 logit "ares build failed (libares$libext)";
559 # cd back to the curl build dir
563 if ($configurebuild) {
565 open(F, "$make -i 2>&1 |") or die;
573 logit "$make -i $targetos";
574 if ($^O eq 'MSWin32') {
575 if ($targetos =~ /vc/) {
576 open(F, "nmake -i $targetos|") or die;
579 open(F, "$make -i $targetos |") or die;
583 open(F, "$make -i $targetos 2>&1 |") or die;
592 if (-f "lib/libcurl$libext") {
593 logit "libcurl was created fine (libcurl$libext)";
596 mydie "libcurl was not created (libcurl$libext)";
599 if (-f "src/curl$binext") {
600 logit "curl was created fine (curl$binext)";
603 mydie "curl was not created (curl$binext)";
606 if (!$crosscompile || (($extvercmd ne '') && (-x $extvercmd))) {
607 logit "display curl${binext} --version output";
608 my $cmd = ($extvercmd ne '' ? $extvercmd.' ' : '')."./src/curl${binext} --version|";
617 if ($configurebuild && !$crosscompile) {
620 $o = "TEST_F=\"$runtestopts\" ";
622 logit "$make -k ${o}test-full";
623 open(F, "$make -k ${o}test-full 2>&1 |") or die;
624 open(LOG, ">$buildlog") or die;
633 if (grepfile("^TEST", $buildlog)) {
634 logit "tests were run";
636 mydie "test suite failure";
639 if (grepfile("^TESTFAIL:", $buildlog)) {
640 logit "the tests were not successful";
642 logit "the tests were successful!";
645 # dummy message to feign success
647 logit "cross-compiling, can't run tests";
649 print "TESTDONE: 1 tests out of 0 (dummy message)\n";
652 # create a tarball if we got that option.
653 if (($mktarball ne '') && (-x $mktarball)) {
658 mydie "ending nicely";