Fix prototypes in e_ossttest.c.
[openssl.git] / test / run_tests.pl
1 #! /usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use File::Spec::Functions qw/catdir catfile curdir abs2rel rel2abs/;
7 use File::Basename;
8 use Test::Harness qw/runtests $switches/;
9
10 my $top = $ENV{TOP};
11 my $recipesdir = catdir($top, "test", "recipes");
12 my $testlib = catdir($top, "test", "testlib");
13 my $utillib = catdir($top, "util");
14
15 # It seems that $switches is getting interpretted with 'eval' or something
16 # like that, and that we need to take care of backslashes or they will
17 # disappear along the way.
18 $testlib =~ s|\\|\\\\|g if $^O eq "MSWin32";
19 $utillib =~ s|\\|\\\\|g if $^O eq "MSWin32";
20
21 # Test::Harness provides the variable $switches to give it
22 # switches to be used when it calls our recipes.
23 $switches = "-w \"-I$testlib\" \"-I$utillib\"";
24
25 my @tests = ( "alltests" );
26 if (@ARGV) {
27     @tests = @ARGV;
28 }
29 my $list_mode = scalar(grep /^list$/, @tests) != 0;
30 if (grep /^alltests|list$/, @tests) {
31     @tests = grep {
32         basename($_) =~ /^[0-9][0-9]-[^\.]*\.t$/
33     } glob(catfile($recipesdir,"*.t"));
34 } else {
35     my @t = ();
36     foreach (@tests) {
37         push @t, grep {
38             basename($_) =~ /^[0-9][0-9]-[^\.]*\.t$/
39         } glob(catfile($recipesdir,"*-$_.t"));
40     }
41     @tests = @t;
42 }
43
44 if ($list_mode) {
45     @tests = map { $_ = basename($_); $_ =~ s/^[0-9][0-9]-//; $_ =~ s/\.t$//;
46                    $_ } @tests;
47     print join("\n", @tests), "\n";
48 } else {
49     @tests = map { abs2rel($_, rel2abs(curdir())); } @tests;
50
51     runtests(sort @tests);
52 }