setup("test_evp_libctx");
}
+my $no_legacy = disabled('legacy') || ($ENV{NO_LEGACY} // 0);
my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
use lib srctop_dir('Configurations');
# If no fips then run the test with no extra arguments.
my @test_args = ( );
-plan tests =>
- ($no_fips ? 0 : 1) # FIPS install test
- + 1;
+plan tests => ($no_fips ? 0 : 1) + ($no_legacy ? 0 : 1) + 1;
unless ($no_fips) {
@test_args = ("-config", srctop_file("test","fips-and-base.cnf"),
ok(run(test(["evp_libctx_test",
"-config", srctop_file("test","default.cnf"),])),
- "running default-and-legacy evp_libctx_test");
+ "running default evp_libctx_test");
+
+unless ($no_legacy) {
+ ok(run(test(["evp_libctx_test",
+ "-config", srctop_file("test","default-and-legacy.cnf"),])),
+ "running default-and-legacy evp_libctx_test");
+}
+