Add mars-nwe FLAIM integration tests
All checks were successful
Source release / source-package (push) Successful in 1m10s

This commit is contained in:
OpenAI Build Bot
2026-06-05 18:00:38 +00:00
committed by Mario Fetka
parent 36fcdb3c83
commit 850b37875b
5 changed files with 371 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#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;
}