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

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

Message

Stephen Hemminger April 4, 2024, 4:22 p.m. UTC
  While looking at using uuid's in some logging cases, discovered
that the existing uuid support in EAL was missing some functions
add in later versions of libuuid.

Add functions to generate Uuid values, and add missing functional
tests for uuid's.

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             | 138 +++++++++++++++++++++++++++++++
 lib/eal/common/eal_common_uuid.c |  56 +++++++++++++
 lib/eal/include/rte_uuid.h       |  28 ++++++-
 lib/eal/version.map              |   2 +
 5 files changed, 224 insertions(+), 1 deletion(-)
 create mode 100644 app/test/test_uuid.c