1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

Skip tests 13&14 in minimal mode

This commit is contained in:
Frank Denis 2017-12-03 16:49:55 +01:00
parent 99fe9eb67f
commit 139cadc76d

View File

@ -38,7 +38,11 @@ static void
sigabrt_handler_12(int sig)
{
(void) sig;
# ifdef SODIUM_LIBRARY_MINIMAL
signal(SIGABRT, sigabrt_handler_15);
# else
signal(SIGABRT, sigabrt_handler_13);
# endif
assert(crypto_pwhash_str_alg(NULL, "", 0U, 1U, 1U, -1) == -1);
exit(1);
}