From 42365926afc3d082e9c9045834cebb221509467c Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 13 Apr 2023 17:13:51 +0300 Subject: [PATCH] test: add xmp test --- test/libxmp.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/libxmp.cpp diff --git a/test/libxmp.cpp b/test/libxmp.cpp new file mode 100644 index 00000000..823b8318 --- /dev/null +++ b/test/libxmp.cpp @@ -0,0 +1,11 @@ +#include + +int main() +{ + xmp_context context = xmp_create_context(); + AEDI_EXPECT(context != nullptr); + AEDI_EXPECT(xmp_syserrno() == 0); + xmp_free_context(context); + + return 0; +}