Files
mars-nwe/tests/flaim/xflaim_api_smoke.cpp
OpenAI Build Bot 850b37875b
All checks were successful
Source release / source-package (push) Successful in 1m10s
Add mars-nwe FLAIM integration tests
2026-06-05 20:01:41 +02:00

18 lines
380 B
C++

#include "xflaim.h"
#include <stdio.h>
int main(void)
{
IF_DbSystem *dbSystem = NULL;
RCODE rc = FlmAllocDbSystem(&dbSystem);
if (RC_BAD(rc) || dbSystem == NULL)
{
fprintf(stderr, "FlmAllocDbSystem failed: 0x%04x\n", (unsigned)rc);
return 1;
}
dbSystem->Release();
printf("mars-nwe XFLAIM allocation smoke passed\n");
return 0;
}