3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-22 06:29:23 +01:00

unit: add check for SHA256/HMAC in SAE test

This commit is contained in:
James Prestwood 2019-04-04 09:32:17 -07:00 committed by Denis Kenzior
parent c985da04ca
commit 5338904824

View File

@ -550,6 +550,11 @@ int main(int argc, char *argv[])
goto done;
}
if (!l_checksum_is_supported(L_CHECKSUM_SHA256, true)) {
l_info("SHA256/HMAC_SHA256 not supported, skipping...");
goto done;
}
l_test_add("SAE commit timeout", test_commit_timeout, NULL);
l_test_add("SAE confirm timeout", test_confirm_timeout, NULL);
l_test_add("SAE anti-clogging", test_clogging, NULL);