提交 3830c194 编写于 作者: R Richard Levitte

Don't generate buildtest_*err.c

The error string header files aren't supposed to be included directly,
so there's no point testing that they can.
Reviewed-by: NRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5678)
上级 7d7f6834
...@@ -528,6 +528,7 @@ ENDIF ...@@ -528,6 +528,7 @@ ENDIF
my @nogo_headers = ( "asn1_mac.h", my @nogo_headers = ( "asn1_mac.h",
"__decc_include_prologue.h", "__decc_include_prologue.h",
"__decc_include_epilogue.h" ); "__decc_include_epilogue.h" );
my @nogo_headers_re = ( qr/.*err\.h/ );
my @headerfiles = glob catfile($sourcedir, my @headerfiles = glob catfile($sourcedir,
updir(), "include", "openssl", "*.h"); updir(), "include", "openssl", "*.h");
...@@ -535,6 +536,7 @@ ENDIF ...@@ -535,6 +536,7 @@ ENDIF
my $name = basename($headerfile, ".h"); my $name = basename($headerfile, ".h");
next if $disabled{$name}; next if $disabled{$name};
next if grep { $_ eq lc("$name.h") } @nogo_headers; next if grep { $_ eq lc("$name.h") } @nogo_headers;
next if grep { lc("$name.h") =~ m/$_/i } @nogo_headers_re;
$OUT .= <<"_____"; $OUT .= <<"_____";
PROGRAMS_NO_INST=buildtest_$name PROGRAMS_NO_INST=buildtest_$name
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册