Files
mars-nwe/tests/flaim/flaimsql_header_link_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

19 lines
381 B
C++

#include "flaimsql.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
SQL_STATS stats;
memset(&stats, 0, sizeof(stats));
stats.eErrorType = SQL_NO_ERROR;
if (stats.eErrorType != SQL_NO_ERROR)
{
fprintf(stderr, "unexpected SQL_STATS value\n");
return 1;
}
printf("mars-nwe FlaimSQL header/link smoke passed\n");
return 0;
}