summaryrefslogtreecommitdiffstats
path: root/fuzz/build.info
diff options
context:
space:
mode:
authorDamian Hobson-Garcia <dhobsong@igel.co.jp>2023-04-04 14:52:56 -0400
committerMatt Caswell <matt@openssl.org>2024-04-24 14:08:03 +0100
commitd10b020e2e389f4e5f5c84ce8d4512536dd3027a (patch)
tree7f5aad5a46495fa25e1aaf9ac8505f83993773d9 /fuzz/build.info
parentf90d97caab451a49613742c09d3ec1e4e2dcf6bc (diff)
fuzz: Add attribute certificate fuzz test
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15857)
Diffstat (limited to 'fuzz/build.info')
-rw-r--r--fuzz/build.info12
1 files changed, 10 insertions, 2 deletions
diff --git a/fuzz/build.info b/fuzz/build.info
index 0a7b047898..dde0e811f5 100644
--- a/fuzz/build.info
+++ b/fuzz/build.info
@@ -10,7 +10,7 @@
IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
PROGRAMS{noinst}=asn1 asn1parse bignum bndiv client conf crl server smime
- PROGRAMS{noinst}=punycode pem decoder hashtable
+ PROGRAMS{noinst}=punycode pem decoder hashtable acert
PROGRAMS{noinst}=v3name
IF[{- !$disabled{"cmp"} -}]
@@ -97,6 +97,10 @@ IF[{- !$disabled{"fuzz-afl"} || !$disabled{"fuzz-libfuzzer"} -}]
INCLUDE[hashtable]=../include {- $ex_inc -}
DEPEND[hashtable]=../libcrypto {- $ex_lib -}
+ SOURCE[acert]=acert.c driver.c
+ INCLUDE[acert]=../include {- $ex_inc -}
+ DEPEND[acert]=../libcrypto {- $ex_lib -}
+
SOURCE[punycode]=punycode.c driver.c
INCLUDE[punycode]=../include {- $ex_inc -}
DEPEND[punycode]=../libcrypto.a {- $ex_lib -}
@@ -136,7 +140,7 @@ ENDIF
IF[{- !$disabled{tests} -}]
PROGRAMS{noinst}=asn1-test asn1parse-test bignum-test bndiv-test client-test conf-test crl-test server-test smime-test
- PROGRAMS{noinst}=punycode-test pem-test decoder-test hashtable-test
+ PROGRAMS{noinst}=punycode-test pem-test decoder-test hashtable-test acert-test
PROGRAMS{noinst}=v3name-test
IF[{- !$disabled{"cmp"} -}]
@@ -225,6 +229,10 @@ IF[{- !$disabled{tests} -}]
INCLUDE[hashtable-test]=../include
DEPEND[hashtable-test]=../libcrypto.a
+ SOURCE[acert-test]=acert.c test-corpus.c
+ INCLUDE[acert-test]=../include
+ DEPEND[acert-test]=../libcrypto
+
SOURCE[punycode-test]=punycode.c test-corpus.c
INCLUDE[punycode-test]=../include
DEPEND[punycode-test]=../libcrypto.a