Imported Upstream version 17.05
[deb_dpdk.git] / app / test-crypto-perf / cperf_test_latency.h
similarity index 74%
rename from app/test/test_version.c
rename to app/test-crypto-perf/cperf_test_latency.h
index afc0d0b..6a2cf61 100644 (file)
@@ -1,8 +1,7 @@
 /*-
  *   BSD LICENSE
  *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   All rights reserved.
+ *   Copyright(c) 2016-2017 Intel Corporation. All rights reserved.
  *
  *   Redistribution and use in source and binary forms, with or without
  *   modification, are permitted provided that the following conditions
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <stdio.h>
-#include <string.h>
+#ifndef _CPERF_LATENCY_
+#define _CPERF_LATENCY_
+
 #include <stdint.h>
 
-#include <rte_common.h>
-#include <rte_version.h>
+#include <rte_mbuf.h>
+
+#include "cperf.h"
+#include "cperf_ops.h"
+#include "cperf_options.h"
+#include "cperf_test_vectors.h"
 
-#include "test.h"
+void *
+cperf_latency_test_constructor(uint8_t dev_id, uint16_t qp_id,
+               const struct cperf_options *options,
+               const struct cperf_test_vector *test_vector,
+               const struct cperf_op_fns *ops_fn);
 
+int
+cperf_latency_test_runner(void *test_ctx);
 
-static int
-test_version(void)
-{
-       const char *version = rte_version();
-       if (version == NULL)
-               return -1;
-       printf("Version string: '%s'\n", version);
-       if (*version == '\0' ||
-                       strncmp(version, RTE_VER_PREFIX, sizeof(RTE_VER_PREFIX)-1) != 0)
-               return -1;
-       return 0;
-}
+void
+cperf_latency_test_destructor(void *test_ctx);
 
-REGISTER_TEST_COMMAND(version_autotest, test_version);
+#endif /* _CPERF_LATENCY_ */