[v2,0/2] uuid: add generate functions and tests

Message ID 20240403221319.499014-1-stephen@networkplumber.org (mailing list archive)
Headers
Series uuid: add generate functions and tests |

Message

Stephen Hemminger April 3, 2024, 10:11 p.m. UTC
  The DPDK version of uuid was missing tests and a way to generate
uuid's.  Add both.

v2 - use RTE_ATOMIC to get _Atomic in clang

Stephen Hemminger (2):
  eal: add functions to generate uuid values
  test: add functional test for uuid

 app/test/meson.build             |   1 +
 app/test/test_uuid.c             | 135 +++++++++++++++++++++++++++++++
 lib/eal/common/eal_common_uuid.c |  56 +++++++++++++
 lib/eal/include/rte_uuid.h       |  22 ++++-
 lib/eal/version.map              |   2 +
 5 files changed, 215 insertions(+), 1 deletion(-)
 create mode 100644 app/test/test_uuid.c