42e0ccdfe8
To be able to run tests when we've built in a directory other than the source tree, the testing framework needs a few adjustments. test/testlib/OpenSSL/Test.pm needs to know where it can find shlib_wrap.sh, and a number of other tests need to be told a different place to find engines than what they may be able to figure out on their own. Relying to $TOP is not enough, $SRCTOP and $BLDTOP can be used as an alternative. As part of this change, top_file and top_dir are removed and srctop_file, bldtop_file, srctop_dir and bldtop_dir take their place. Reviewed-by: Ben Laurie <ben@openssl.org>
75 lines
1.3 KiB
Perl
75 lines
1.3 KiB
Perl
#! /usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Math::BigInt;
|
|
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
|
|
|
setup("test_bn");
|
|
|
|
plan tests => 3;
|
|
|
|
require_ok(srctop_file("test","recipes","bc.pl"));
|
|
|
|
my $testresults = "tmp.bntest";
|
|
my $init = ok(run(test(["bntest"], stdout => $testresults)), 'initialize');
|
|
|
|
SKIP: {
|
|
skip "Initializing failed, skipping", 1 if !$init;
|
|
|
|
subtest 'Checking the bn results' => sub {
|
|
my @lines = ();
|
|
if (open DATA, $testresults) {
|
|
@lines = <DATA>;
|
|
close DATA;
|
|
}
|
|
map { s/\R//; } @lines; # chomp(@lines);
|
|
|
|
plan tests => scalar grep(/^print /, @lines);
|
|
|
|
my $l = "";
|
|
|
|
while (scalar @lines) {
|
|
$l = shift @lines;
|
|
|
|
last if $l =~ /^print /;
|
|
}
|
|
|
|
while (1) {
|
|
$l =~ s/^print "//;
|
|
$l =~ s/\\n"//;
|
|
my $t = $l;
|
|
my @operations = ();
|
|
|
|
$l = undef;
|
|
while (scalar @lines) {
|
|
$l = shift @lines;
|
|
|
|
last if $l =~ /^print /;
|
|
push @operations, $l;
|
|
$l = undef;
|
|
}
|
|
|
|
ok(check_operations(@operations), "verify $t");
|
|
|
|
last unless $l;
|
|
}
|
|
};
|
|
}
|
|
|
|
sub check_operations {
|
|
my $failcount = 0;
|
|
|
|
foreach my $line (@_) {
|
|
my $result = calc(split /\s+/, $line);
|
|
|
|
if ($result ne "0" && $result ne "0x0") {
|
|
$failcount++;
|
|
print STDERR "Failed! $line => $result\n";
|
|
}
|
|
}
|
|
|
|
return $failcount == 0;
|
|
}
|