Don't generate buildtest_*err.c
authorRichard Levitte <levitte@openssl.org>
Mon, 19 Mar 2018 17:54:27 +0000 (18:54 +0100)
committerRichard Levitte <levitte@openssl.org>
Mon, 19 Mar 2018 17:54:27 +0000 (18:54 +0100)
The error string header files aren't supposed to be included directly,
so there's no point testing that they can.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5678)

test/build.info

index 085f0faa108912f9234184904ec4d5a091e9636c..2a7ea745f32e7cea22ac653fdff48921707d450c 100644 (file)
@@ -528,6 +528,7 @@ ENDIF
    my @nogo_headers = ( "asn1_mac.h",
                         "__decc_include_prologue.h",
                         "__decc_include_epilogue.h" );
+   my @nogo_headers_re = ( qr/.*err\.h/ );
    my @headerfiles = glob catfile($sourcedir,
                                   updir(), "include", "openssl", "*.h");
 
@@ -535,6 +536,7 @@ ENDIF
        my $name = basename($headerfile, ".h");
        next if $disabled{$name};
        next if grep { $_ eq lc("$name.h") } @nogo_headers;
+       next if grep { lc("$name.h") =~ m/$_/i } @nogo_headers_re;
        $OUT .= <<"_____";
 
   PROGRAMS_NO_INST=buildtest_$name