]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/selftest.pl
Update CHANGES and NEWS
[thirdparty/openssl.git] / util / selftest.pl
CommitLineData
720b590f
UM
1#!/usr/local/bin/perl -w
2#
3# Run the test suite and generate a report
4#
5
6if (! -f "Configure") {
7 print "Please run perl util/selftest.pl in the OpenSSL directory.\n";
8 exit 1;
9}
10
11my $report="testlog";
12my $os="??";
13my $version="??";
14my $platform0="??";
15my $platform="??";
16my $options="??";
17my $last="??";
18my $ok=0;
19my $cc="cc";
d7f0ab5f 20my $cversion="??";
720b590f 21my $sep="-----------------------------------------------------------------------------\n";
e7cae747 22my $not_our_fault="\nPlease ask your system administrator/vendor for more information.\n[Problems with your operating system setup should not be reported\nto the OpenSSL project.]\n";
720b590f
UM
23
24open(OUT,">$report") or die;
25
26print OUT "OpenSSL self-test report:\n\n";
27
28$uname=`uname -a`;
c7fecee8 29$uname="??\n" if $uname eq "";
720b590f
UM
30
31$c=`sh config -t`;
32foreach $_ (split("\n",$c)) {
33 $os=$1 if (/Operating system: (.*)$/);
34 $platform0=$1 if (/Configuring for (.*)$/);
35}
36
69af4fae 37system "sh config" if (! -f "Makefile");
720b590f 38
69af4fae 39if (open(IN,"<Makefile")) {
720b590f
UM
40 while (<IN>) {
41 $version=$1 if (/^VERSION=(.*)$/);
42 $platform=$1 if (/^PLATFORM=(.*)$/);
43 $options=$1 if (/^OPTIONS=(.*)$/);
d7f0ab5f 44 $cc=$1 if (/^CC= *(.*)$/);
720b590f
UM
45 }
46 close(IN);
47} else {
d7f0ab5f 48 print OUT "Error running config!\n";
720b590f
UM
49}
50
d7f0ab5f 51$cversion=`$cc -v 2>&1`;
09328922 52$cversion=`$cc -V 2>&1` if $cversion =~ "[Uu]sage";
7b4c588f 53$cversion=`$cc -V |head -1` if $cversion =~ "Error";
4c5fac4a 54$cversion=`$cc --version` if $cversion eq "";
d7f0ab5f
UM
55$cversion =~ s/Reading specs.*\n//;
56$cversion =~ s/usage.*\n//;
57chomp $cversion;
58
720b590f
UM
59if (open(IN,"<CHANGES")) {
60 while(<IN>) {
e29f478a 61 if (/\*\) (.{0,55})/ && !/applies to/) {
720b590f
UM
62 $last=$1;
63 last;
64 }
65 }
66 close(IN);
67}
68
69print OUT "OpenSSL version: $version\n";
70print OUT "Last change: $last...\n";
4c5fac4a 71print OUT "Options: $options\n" if $options ne "";
720b590f
UM
72print OUT "OS (uname): $uname";
73print OUT "OS (config): $os\n";
74print OUT "Target (default): $platform0\n";
75print OUT "Target: $platform\n";
d7f0ab5f 76print OUT "Compiler: $cversion\n";
720b590f
UM
77print OUT "\n";
78
79print "Checking compiler...\n";
331b5921 80if (open(TEST,">cctest.c")) {
e7cae747 81 print TEST "#include <stdio.h>\n#include <errno.h>\nmain(){printf(\"Hello world\\n\");}\n";
720b590f 82 close(TEST);
331b5921 83 system("$cc -o cctest cctest.c");
71308c3b 84 if (`./cctest` !~ /Hello world/) {
720b590f 85 print OUT "Compiler doesn't work.\n";
e7cae747 86 print OUT $not_our_fault;
720b590f
UM
87 goto err;
88 }
b313adc4 89 system("ar r cctest.a /dev/null");
c7fecee8 90 if (not -f "cctest.a") {
0cff2550 91 print OUT "Check your archive tool (ar).\n";
e7cae747 92 print OUT $not_our_fault;
c7fecee8
UM
93 goto err;
94 }
720b590f 95} else {
331b5921 96 print OUT "Can't create cctest.c\n";
720b590f 97}
331b5921 98if (open(TEST,">cctest.c")) {
720b590f
UM
99 print TEST "#include <openssl/opensslv.h>\nmain(){printf(OPENSSL_VERSION_TEXT);}\n";
100 close(TEST);
331b5921 101 system("$cc -o cctest -Iinclude cctest.c");
720b590f
UM
102 $cctest = `./cctest`;
103 if ($cctest !~ /OpenSSL $version/) {
104 if ($cctest =~ /OpenSSL/) {
105 print OUT "#include uses headers from different OpenSSL version!\n";
106 } else {
107 print OUT "Can't compile test program!\n";
108 }
e7cae747 109 print OUT $not_our_fault;
720b590f
UM
110 goto err;
111 }
112} else {
331b5921 113 print OUT "Can't create cctest.c\n";
720b590f
UM
114}
115
116print "Running make...\n";
117if (system("make 2>&1 | tee make.log") > 255) {
118
119 print OUT "make failed!\n";
120 if (open(IN,"<make.log")) {
121 print OUT $sep;
122 while (<IN>) {
123 print OUT;
124 }
125 close(IN);
126 print OUT $sep;
127 } else {
128 print OUT "make.log not found!\n";
129 }
130 goto err;
131}
132
49e96bad
RL
133# Not sure why this is here. The tests themselves can detect if their
134# particular feature isn't included, and should therefore skip themselves.
135# To skip *all* tests just because one algorithm isn't included is like
136# shooting mosquito with an elephant gun...
137# -- Richard Levitte, inspired by problem report 1089
138#
139#$_=$options;
140#s/no-asm//;
141#s/no-shared//;
142#s/no-krb5//;
143#if (/no-/)
144#{
145# print OUT "Test skipped.\n";
146# goto err;
147#}
4c5fac4a 148
720b590f 149print "Running make test...\n";
c7fecee8 150if (system("make test 2>&1 | tee maketest.log") > 255)
720b590f
UM
151 {
152 print OUT "make test failed!\n";
153} else {
154 $ok=1;
155}
156
c7fecee8 157if ($ok and open(IN,"<maketest.log")) {
720b590f
UM
158 while (<IN>) {
159 $ok=2 if /^platform: $platform/;
160 }
161 close(IN);
162}
163
164if ($ok != 2) {
165 print OUT "Failure!\n";
166 if (open(IN,"<make.log")) {
167 print OUT $sep;
168 while (<IN>) {
169 print OUT;
170 }
171 close(IN);
172 print OUT $sep;
173 } else {
174 print OUT "make.log not found!\n";
175 }
c7fecee8
UM
176 if (open(IN,"<maketest.log")) {
177 while (<IN>) {
178 print OUT;
179 }
180 close(IN);
181 print OUT $sep;
182 } else {
183 print OUT "maketest.log not found!\n";
184 }
720b590f
UM
185} else {
186 print OUT "Test passed.\n";
187}
188err:
189close(OUT);
190
191print "\n";
192open(IN,"<$report") or die;
193while (<IN>) {
4c5fac4a
UM
194 if (/$sep/) {
195 print "[...]\n";
196 last;
197 }
720b590f
UM
198 print;
199}
4c5fac4a 200print "\nTest report in file $report\n";
d7f0ab5f 201