diff options
author | VladimĂr Kotal <vladimir.kotal@oracle.com> | 2023-06-01 19:55:54 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-06-06 03:05:02 +0200 |
commit | 3ca28c9e81fae36b0b44dc39beecd2b5a7561975 (patch) | |
tree | 4d1028ff958edec00915ef4b962c31c1c232ca9a /test/build.info | |
parent | doc: note that out ChaCha20 isn't standard compliant. (diff) | |
download | openssl-3ca28c9e81fae36b0b44dc39beecd2b5a7561975.tar.xz openssl-3ca28c9e81fae36b0b44dc39beecd2b5a7561975.zip |
allow to disable http
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21108)
Diffstat (limited to 'test/build.info')
-rw-r--r-- | test/build.info | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/test/build.info b/test/build.info index f6f19d6407..13f81226ba 100644 --- a/test/build.info +++ b/test/build.info @@ -57,7 +57,7 @@ IF[{- !$disabled{tests} -}] x509_time_test x509_dup_cert_test x509_check_cert_pkey_test \ recordlentest drbgtest rand_status_test sslbuffertest \ time_offset_test pemtest ssl_cert_table_internal_test ciphername_test \ - http_test servername_test ocspapitest fatalerrtest tls13ccstest \ + servername_test ocspapitest fatalerrtest tls13ccstest \ sysdefaulttest errtest ssl_ctx_test build_wincrypt_test \ context_internal_test aesgcmtest params_test evp_pkey_dparams_test \ keymgmt_internal_test hexstr_test provider_status_test defltfips_test \ @@ -515,12 +515,14 @@ IF[{- !$disabled{tests} -}] DEPEND[ocspapitest]=../libcrypto libtestutil.a IF[{- !$disabled{sock} -}] - PROGRAMS{noinst}=http_test - ENDIF + IF[{- !$disabled{http} -}] + PROGRAMS{noinst}=http_test - SOURCE[http_test]=http_test.c - INCLUDE[http_test]=../include ../apps/include - DEPEND[http_test]=../libcrypto libtestutil.a + SOURCE[http_test]=http_test.c + INCLUDE[http_test]=../include ../apps/include + DEPEND[http_test]=../libcrypto libtestutil.a + ENDIF + ENDIF SOURCE[dtlstest]=dtlstest.c helpers/ssltestlib.c INCLUDE[dtlstest]=../include ../apps/include @@ -590,10 +592,6 @@ IF[{- !$disabled{tests} -}] INCLUDE[ciphername_test]=../include ../apps/include DEPEND[ciphername_test]=../libcrypto ../libssl libtestutil.a - SOURCE[http_test]=http_test.c - INCLUDE[http_test]=../include ../apps/include - DEPEND[http_test]=../libcrypto libtestutil.a - SOURCE[servername_test]=servername_test.c helpers/ssltestlib.c INCLUDE[servername_test]=../include ../apps/include DEPEND[servername_test]=../libcrypto ../libssl libtestutil.a |