Rework build: add special cases for AIX
[openssl.git] / test / recipes / 30-test_evp.t
index bd135f8dd0529e6bc29fab0e9cb9b6950d0822de..c2079bd6e6097b0b06b6d9323d85b41fff79ed73 100644 (file)
@@ -1,13 +1,26 @@
-#! /usr/bin/perl
+#! /usr/bin/env perl
+# Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (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 Test::More;
-use OpenSSL::Test qw/:DEFAULT top_file/;
+use OpenSSL::Test qw/:DEFAULT data_file/;
 
 setup("test_evp");
 
-plan tests => 1;
-ok(run(test(["evp_test", top_file("test", "evptests.txt")])),
-   "running evp_test evptests.txt");
+my @files = ( "evpciph.txt", "evpdigest.txt", "evpencod.txt", "evpkdf.txt",
+    "evpmac.txt", "evppbe.txt", "evppkey.txt", "evppkey_ecc.txt",
+    "evpcase.txt", "evpaessiv.txt" );
+
+plan tests => scalar(@files);
+
+foreach my $f ( @files ) {
+    ok(run(test(["evp_test", data_file("$f")])),
+       "running evp_test $f");
+}