diff options
author | Pauli <paul.dale@oracle.com> | 2018-11-16 02:44:30 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-02-18 04:28:14 +0100 |
commit | 1bdbdaffdc66be457a40f33640b523aaf21138c6 (patch) | |
tree | 23bd17995698f4f14780fc9b9a3dad589f2ea96a /test/sparse_array_test.c | |
parent | Add missing dots in dgst man page (diff) | |
download | openssl-1bdbdaffdc66be457a40f33640b523aaf21138c6.tar.xz openssl-1bdbdaffdc66be457a40f33640b523aaf21138c6.zip |
Properties for implementation selection.
Properties are a sequence of comma separated name=value pairs. A name
without a corresponding value is assumed to be a Boolean and have the
true value 'yes'. Values are either strings or numbers. Strings can be
quoted either _"_ or _'_ or unquoted (with restrictions). There are no
escape characters inside strings. Number are either decimal digits or
'0x' followed by hexidecimal digits. Numbers are represented internally
as signed sixty four bit values.
Queries on properties are a sequence comma separated conditional tests.
These take the form of name=value (equality test), name!=value (inequality
test) or name (Boolean test for truth). Queries can be parsed, compared
against a definition or merged pairwise.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8224)
Diffstat (limited to '')
-rw-r--r-- | test/sparse_array_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sparse_array_test.c b/test/sparse_array_test.c index fa57f3fc0e..02ce0d1e4a 100644 --- a/test/sparse_array_test.c +++ b/test/sparse_array_test.c @@ -164,7 +164,7 @@ static int test_sparse_array_doall(void) TEST_note("failed at iteration %zu", i + 1); goto err; } - + ossl_sa_char_doall_arg(sa, &leaf_check_all, &doall_data); if (doall_data.res == 0) { TEST_info("while checking all elements"); |