mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 11:31:07 +00:00
test: add xmp test
This commit is contained in:
parent
b5cdda3a49
commit
42365926af
1 changed files with 11 additions and 0 deletions
11
test/libxmp.cpp
Normal file
11
test/libxmp.cpp
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue