test: add xmp test

This commit is contained in:
alexey.lysiuk 2023-04-13 17:13:51 +03:00
parent b5cdda3a49
commit 42365926af

11
test/libxmp.cpp Normal file
View file

@ -0,0 +1,11 @@
#include <xmp.h>
int main()
{
xmp_context context = xmp_create_context();
AEDI_EXPECT(context != nullptr);
AEDI_EXPECT(xmp_syserrno() == 0);
xmp_free_context(context);
return 0;
}