~ubuntu-branches/ubuntu/quantal/curl/quantal-updates

« back to all changes in this revision

Viewing changes to tests/runtests.pl

  • Committer: Bazaar Package Importer
  • Author(s): Ramakrishnan Muthukrishnan
  • Date: 2010-04-28 18:40:27 UTC
  • mto: (3.5.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: james.westby@ubuntu.com-20100428184027-34hnmmxv9xdvhfji
Tags: upstream-7.20.1
ImportĀ upstreamĀ versionĀ 7.20.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20
20
# KIND, either express or implied.
21
21
#
22
 
# $Id: runtests.pl,v 1.383 2010-02-06 17:31:09 yangtse Exp $
23
22
###########################################################################
24
23
 
25
24
# Experimental hooks are available to run tests remotely on machines that
26
 
# are able to run curl but are unable to run the test harness.  
 
25
# are able to run curl but are unable to run the test harness.
27
26
# The following sections need to be modified:
28
27
#
29
28
#  $HOSTIP, $HOST6IP - Set to the address of the host running the test suite
749
748
    unlink($verifylog) if(-f $verifylog);
750
749
 
751
750
    if($proto eq "ftps") {
752
 
        $extra .= "--insecure --ftp-ssl-control ";
 
751
        $extra .= "--insecure --ftp-ssl-control ";
753
752
    }
754
753
    elsif($proto eq "smtp") {
755
754
        # SMTP is a bit different since it requires more options and it
3694
3693
        exit;
3695
3694
    }
3696
3695
    shift @ARGV;
3697
 
 
3696
}
3698
3697
 
3699
3698
if(@testthis && ($testthis[0] ne "")) {
3700
3699
    $TESTCASES=join(" ", @testthis);