| 827 | } |
| 828 | |
| 829 | static int |
| 830 | blockcipher_test_case_run(const void *data) |
| 831 | { |
| 832 | const struct blockcipher_test_case *tc_data = data; |
| 833 | int status; |
| 834 | char test_msg[BLOCKCIPHER_TEST_MSG_LEN + 1]; |
| 835 | |
| 836 | status = test_blockcipher_one_case(tc_data, |
| 837 | p_testsuite_params->mbuf_pool, |
| 838 | p_testsuite_params->op_mpool, |
| 839 | p_testsuite_params->session_mpool, |
| 840 | p_testsuite_params->valid_devs[0], |
| 841 | test_msg); |
| 842 | return status; |
| 843 | } |
| 844 | |
| 845 | static int |
| 846 | aes_chain_setup(void) |
nothing calls this directly
no test coverage detected