| 935 | } |
| 936 | |
| 937 | static int |
| 938 | test_crosscheck_unit(const void *ptr) |
| 939 | { |
| 940 | const struct crosscheck_test_profile *profile = ptr; |
| 941 | |
| 942 | if (profile->xform_type == RTE_CRYPTO_SYM_XFORM_NOT_SPECIFIED) |
| 943 | return TEST_SKIPPED; |
| 944 | |
| 945 | return crosscheck_with_profile_run(profile); |
| 946 | } |
| 947 | |
| 948 | static struct unit_test_suite* |
| 949 | sym_unit_test_suite_create(const struct rte_cryptodev_symmetric_capability *capa) |
nothing calls this directly
no test coverage detected