diff options
author | Richard Levitte <levitte@openssl.org> | 2021-02-05 15:39:32 +0100 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2021-02-09 08:05:06 +0100 |
commit | e60a748a13a244e8b13bacca18bad9bb3505aa90 (patch) | |
tree | 878f71747096c993a90b23f914c7ddc1a2a2c9ab /build.info | |
parent | Enable fipsload test on NonStop x86. (diff) | |
download | openssl-e60a748a13a244e8b13bacca18bad9bb3505aa90.tar.xz openssl-e60a748a13a244e8b13bacca18bad9bb3505aa90.zip |
Configuration: ensure that 'no-tests' works correctly
'no-tests' wasn't entirely respected when specifying subdirs in the
top build.info.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14082)
Diffstat (limited to '')
-rw-r--r-- | build.info | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.info b/build.info index 053329c682..f631d6c780 100644 --- a/build.info +++ b/build.info @@ -1,7 +1,10 @@ # Note that some of these directories are filtered in Configure. Look for # %skipdir there for further explanations. -SUBDIRS=crypto ssl apps test util tools fuzz providers doc +SUBDIRS=crypto ssl apps util tools fuzz providers doc +IF[{- !$disabled{tests} -}] + SUBDIRS=test +ENDIF IF[{- !$disabled{'deprecated-3.0'} -}] SUBDIRS=engines ENDIF |