Add mars-nwe FLAIM integration tests
All checks were successful
Source release / source-package (push) Successful in 1m10s
All checks were successful
Source release / source-package (push) Successful in 1m10s
This commit is contained in:
committed by
Mario Fetka
parent
36fcdb3c83
commit
850b37875b
18
tests/flaim/flaimsql_header_link_smoke.cpp
Normal file
18
tests/flaim/flaimsql_header_link_smoke.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user