[v4,0/2] uuid: generator functions and unit test

Message ID 20240409170602.541658-1-stephen@networkplumber.org (mailing list archive)
Headers
Series uuid: generator functions and unit test |

Message

Stephen Hemminger April 9, 2024, 5:05 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.

v4 - review comments and use stdatomic

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       |  26 ++++++
 lib/eal/version.map              |   4 +
 5 files changed, 225 insertions(+)
 create mode 100644 app/test/test_uuid.c