Add some session API tests
[openssl.git] / test / recipes / 10-test_bn.t
index 29b449fec94cc37777ea74d0bdfe93c51c099aee..13f278e703a3bd72a9a7e5f1fcbb93b04d6ced38 100644 (file)
@@ -1,17 +1,24 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
+# Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the OpenSSL license (the "License").  You may not use
+# this file except in compliance with the License.  You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
 
 use strict;
 use warnings;
 
 use Math::BigInt;
 
-use OpenSSL::Test qw/:DEFAULT top_file/;
+use OpenSSL::Test qw/:DEFAULT srctop_file/;
 
 setup("test_bn");
 
 plan tests => 3;
 
-require_ok(top_file("test","recipes","bc.pl"));
+require_ok(srctop_file("test","recipes","bc.pl"));
 
 my $testresults = "tmp.bntest";
 my $init = ok(run(test(["bntest"], stdout => $testresults)), 'initialize');
@@ -25,7 +32,7 @@ my $init = ok(run(test(["bntest"], stdout => $testresults)), 'initialize');
             @lines = <DATA>;
             close DATA;
         }
-        chomp(@lines);
+        map { s/\R//; } @lines;        # chomp(@lines);
 
         plan tests => scalar grep(/^print /, @lines);
 
@@ -57,7 +64,9 @@ my $init = ok(run(test(["bntest"], stdout => $testresults)), 'initialize');
             last unless $l;
         }
      };
-}
+ }
+
+unlink $testresults;
 
 sub check_operations {
     my $failcount = 0;