Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl-7.19.0 / tests / testcurl.pl
blob55a58d961c2b9861923cfc8fc39d5127a4240982
1 #!/usr/bin/env perl
2 #***************************************************************************
3 # _ _ ____ _
4 # Project ___| | | | _ \| |
5 # / __| | | | |_) | |
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/
37 # USAGE:
38 # testcurl.pl [options] [curl-daily-name] > output
40 # Options:
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.
58 use strict;
60 use Cwd;
62 # Turn on warnings (equivalent to -w, which can't be used with /usr/bin/env)
63 #BEGIN { $^W = 1; }
65 use vars qw($version $fixed $infixed $CURLDIR $CVS $pwd $build $buildlog
66 $buildlogname $configurebuild $targetos $confsuffix $binext
67 $libext);
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 $';
73 $fixed=0;
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.
77 $CURLDIR="curl";
78 $CVS=1;
79 $setupfile = 'setup';
80 while ($ARGV[0]) {
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/) {
106 $nocvsup=1;
107 shift @ARGV;
109 elsif ($ARGV[0] =~ /--nobuildconf/) {
110 $nobuildconf=1;
111 shift @ARGV;
113 elsif ($ARGV[0] =~ /--crosscompile/) {
114 $crosscompile=1;
115 shift @ARGV;
117 elsif ($ARGV[0] =~ /--runtestopts=/) {
118 $runtestopts = (split(/=/, shift @ARGV, 2))[1];
120 else {
121 $CURLDIR=shift @ARGV;
122 $CVS=0;
126 # Do the platform-specific stuff here
127 $configurebuild = 1;
128 $confsuffix = '';
129 $binext = '';
130 $libext = '.la'; # .la since both libcurl and libcares are made with libtool
131 if ($^O eq 'MSWin32' || $targetos) {
132 if (!$targetos) {
133 # If no target defined on Win32 lets assume vc
134 $targetos = 'vc';
136 if ($targetos =~ /vc/ || $targetos =~ /borland/) {
137 $binext = '.exe';
138 $libext = '.lib';
140 elsif ($targetos =~ /mingw32/) {
141 $binext = '.exe';
142 if ($^O eq 'MSWin32') {
143 $libext = '.a';
146 elsif ($targetos =~ /netware/) {
147 $configurebuild = 0;
148 $binext = '.nlm';
149 if ($^O eq 'MSWin32') {
150 $libext = '.lib';
152 else {
153 $libext = '.a';
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.
165 $configurebuild = 0;
166 $confsuffix = '-win32';
170 $ENV{LANG}="C";
172 sub rmtree($) {
173 my $target = $_[0];
174 if ($^O eq 'MSWin32') {
175 foreach (glob($target)) {
176 s:/:\\:g;
177 system("rd /s /q $_");
179 } else {
180 system("rm -rf $target");
184 sub grepfile($$) {
185 my ($target, $fn) = @_;
186 open(F, $fn) or die;
187 while (<F>) {
188 if (/$target/) {
189 close(F);
190 return 1;
193 close(F);
194 return 0;
197 sub logit($) {
198 my $text=$_[0];
199 if ($text) {
200 print "testcurl: $text\n";
204 sub mydie($){
205 my $text=$_[0];
206 logit "$text";
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";
214 if (-r $buildlog) {
215 # we have a build log output file left, remove it
216 logit "removing the $buildlogname file";
217 unlink "$buildlog";
219 logit "ENDING HERE"; # last line logged!
220 exit 1;
223 if (open(F, "$setupfile")) {
224 while (<F>) {
225 if (/(\w+)=(.*)/) {
226 eval "\$$1=$2;";
229 close(F);
230 $infixed=$fixed;
231 } else {
232 $infixed=0; # so that "additional args to configure" works properly first time...
235 if (!$name) {
236 print "please enter your name\n";
237 $name = <>;
238 chomp $name;
239 $fixed=1;
242 if (!$email) {
243 print "please enter your contact email address\n";
244 $email = <>;
245 chomp $email;
246 $fixed=2;
249 if (!$desc) {
250 print "please enter a one line system description\n";
251 $desc = <>;
252 chomp $desc;
253 $fixed=3;
256 if (!$confopts) {
257 if ($infixed < 4) {
258 print "please enter your additional arguments to configure\n";
259 print "examples: --with-ssl --enable-debug --enable-ipv6 --with-krb4\n";
260 $confopts = <>;
261 chomp $confopts;
266 if ($fixed < 4) {
267 $fixed=4;
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";
274 close(F);
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
297 $str1066os = undef;
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.
301 $pwd = getcwd();
303 if (-d $CURLDIR) {
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"
311 } else {
312 mydie "$CURLDIR is not a daily source dir or checked out from CVS!"
315 $build="build-$$";
316 $buildlogname="buildlog-$$";
317 $buildlog="$pwd/$buildlogname";
319 # remove any previous left-overs
320 rmtree "build-*";
321 rmtree "buildlog-*";
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
327 mkdir $build, 0777;
329 if (-d $build) {
330 logit "build dir $build was created fine";
331 } else {
332 mydie "failed to create dir $build";
335 # get in the curl source tree root
336 chdir $CURLDIR;
338 # Do the CVS thing, or not...
339 if ($CVS) {
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";
346 my $cvsstat;
348 sub cvsup() {
349 # update quietly to the latest CVS
350 if($nocvsup) {
351 logit "Skipping CVS update (--nocvsup)";
352 return 1;
354 else {
355 logit "run cvs up";
356 system("cvs -Q up -dP 2>&1");
359 $cvsstat=$?;
361 # return !RETURNVALUE so that errors return 0 while goodness
362 # returns 1
363 return !$cvsstat;
366 my $att=0;
367 while (!cvsup()) {
368 $att++;
369 logit "failed CVS update attempt number $att.";
370 if ($att > 20) {
371 $cvsstat=111;
372 last; # get out of the loop
374 sleep 5;
377 if ($cvsstat != 0) {
378 mydie "failed to update from CVS ($cvsstat), exiting";
380 elsif (!$nocvsup) {
381 # Set timestamp to the UTC the CVS update took place.
382 $timestamp = scalar(gmtime)." UTC";
385 if($nobuildconf) {
386 logit "told to not run buildconf";
388 elsif ($configurebuild) {
389 # remove possible left-overs from the past
390 unlink "configure";
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;
397 while (<F>) {
398 next if /warning: underquoted definition of/;
399 print;
400 print LOG;
402 close(F);
403 close(LOG);
405 if (grepfile("^buildconf: OK", $buildlog)) {
406 logit "buildconf was successful";
408 else {
409 mydie "buildconf was NOT successful";
412 else {
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"))) {
420 while (<F>) {
421 chomp;
422 if ($_ =~ /^\#define\s+LIBCURL_TIMESTAMP\s+\"(.+)\".*$/) {
423 my $stampstring = $1;
424 if ($stampstring !~ /CVS/) {
425 $stampstring =~ s/\s+UTC//;
426 $timestamp = $stampstring." UTC";
428 last;
431 close(F);
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)";
440 } else {
441 mydie "no configure created/found";
443 } else {
444 logit "configure created (dummy message)"; # dummy message to feign success
447 sub findinpath {
448 my $c;
449 my $e;
450 my $x='';
451 $x='.exe' if ($^O eq 'MSWin32');
452 my $s=':';
453 $s=';' if ($^O eq 'MSWin32');
454 my $p=$ENV{'PATH'};
455 my @pa = split($s, $p);
456 for $c (@_) {
457 for $e (@pa) {
458 if( -x "$e/$c$x") {
459 return $c;
465 my $make = findinpath("gmake", "make", "nmake");
466 if(!$make) {
467 mydie "Couldn't find make in the PATH";
469 logit "going with $make as make";
471 # change to build dir
472 chdir "$pwd/$build";
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";
480 } else {
481 mydie "configure didn't work";
483 } else {
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")) {
507 while(<F>) {
508 my $ll = $_;
509 print $ll if(($ll =~ /^ *# *define/) && ($ll !~ /__CURL_CURLBUILD_H/));
511 close(F);
514 else {
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: $!";
520 while (<F>) {
521 print if /^ *#/;
523 close(F);
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")) {
530 while (<F>) {
531 print if /^ *#/;
533 close(F);
536 logit "build ares";
537 chdir "ares";
539 if ($targetos && !$configurebuild) {
540 logit "$make -f Makefile.$targetos";
541 open(F, "$make -f Makefile.$targetos 2>&1 |") or die;
543 else {
544 logit "$make";
545 open(F, "$make 2>&1 |") or die;
547 while (<F>) {
548 s/$pwd//g;
549 print;
551 close(F);
553 if (-f "libcares$libext") {
554 logit "ares is now built successfully (libcares$libext)";
555 } else {
556 logit "ares build failed (libares$libext)";
559 # cd back to the curl build dir
560 chdir "$pwd/$build";
563 if ($configurebuild) {
564 logit "$make -i";
565 open(F, "$make -i 2>&1 |") or die;
566 while (<F>) {
567 s/$pwd//g;
568 print;
570 close(F);
572 else {
573 logit "$make -i $targetos";
574 if ($^O eq 'MSWin32') {
575 if ($targetos =~ /vc/) {
576 open(F, "nmake -i $targetos|") or die;
578 else {
579 open(F, "$make -i $targetos |") or die;
582 else {
583 open(F, "$make -i $targetos 2>&1 |") or die;
585 while (<F>) {
586 s/$pwd//g;
587 print;
589 close(F);
592 if (-f "lib/libcurl$libext") {
593 logit "libcurl was created fine (libcurl$libext)";
595 else {
596 mydie "libcurl was not created (libcurl$libext)";
599 if (-f "src/curl$binext") {
600 logit "curl was created fine (curl$binext)";
602 else {
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|";
609 open(F, $cmd);
610 while(<F>) {
611 print;
612 print LOG;
614 close(F);
617 if ($configurebuild && !$crosscompile) {
618 my $o;
619 if($runtestopts) {
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;
625 while (<F>) {
626 s/$pwd//g;
627 print;
628 print LOG;
630 close(F);
631 close(LOG);
633 if (grepfile("^TEST", $buildlog)) {
634 logit "tests were run";
635 } else {
636 mydie "test suite failure";
639 if (grepfile("^TESTFAIL:", $buildlog)) {
640 logit "the tests were not successful";
641 } else {
642 logit "the tests were successful!";
644 } else {
645 # dummy message to feign success
646 if($crosscompile) {
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)) {
654 system($mktarball);
657 # mydie to cleanup
658 mydie "ending nicely";