net/sfc: rename array of SW stats descriptions
[dpdk.git] / app / test / test_crc.c
index f8a74e0..bf1d344 100644 (file)
@@ -1,5 +1,5 @@
 /* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2017 Intel Corporation
+ * Copyright(c) 2017-2020 Intel Corporation
  */
 
 #include "test.h"
@@ -149,6 +149,15 @@ test_crc(void)
                return ret;
        }
 
+       /* set CRC avx512 mode */
+       rte_net_crc_set_alg(RTE_NET_CRC_AVX512);
+
+       ret = test_crc_calc();
+       if (ret < 0) {
+               printf("test crc (x86_64 AVX512): failed (%d)\n", ret);
+               return ret;
+       }
+
        /* set CRC neon mode */
        rte_net_crc_set_alg(RTE_NET_CRC_NEON);