aboutsummaryrefslogtreecommitdiffstats
path: root/test/test/test_crc.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test/test_crc.c')
-rw-r--r--test/test/test_crc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test/test_crc.c b/test/test/test_crc.c
index cd5af69a..9f2a17d4 100644
--- a/test/test/test_crc.c
+++ b/test/test/test_crc.c
@@ -178,6 +178,15 @@ test_crc(void)
return ret;
}
+ /* set CRC neon mode */
+ rte_net_crc_set_alg(RTE_NET_CRC_NEON);
+
+ ret = test_crc_calc();
+ if (ret < 0) {
+ printf("test crc (arm64 neon pmull): failed (%d)\n", ret);
+ return ret;
+ }
+
return 0;
}