add new basic checks, rename ca_hashes_up_to_date

This commit is contained in:
Dirk Wetter
2020-01-13 17:36:40 +01:00
parent a7b0a04480
commit 91f8f33a6c
3 changed files with 88 additions and 0 deletions

9
t/05_ca_hashes_up_to_date.t Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env perl
use strict;
use Test::More tests => 1;
my $newer_bundles=`find etc/*.pem -newer etc/ca_hashes.txt`;
is($newer_bundles,"","List of CA bundles newer then etc/ca_hashes.txt should be empty. If not run utils/create_ca_hashes.sh");
done_testing;