15 May
2023
15 May
'23
6:11 p.m.
Zebediah Figura (@zfigura) commented about dlls/msado15/tests/msado15.c:
+static BOOL db_created = TRUE; +static char mdbpath[MAX_PATH]; + +static void setup_database(void) +{ + char *driver; + DWORD code; + char buffer[1024]; + WORD size; + + if (winetest_interactive) + { + trace("assuming odbc 'wine_msado15' is available\n"); + db_created = TRUE; + return; + } I don't quite understand the point of this part. If we expect the driver to always work on Wine, why guard it with winetest_interactive?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2498#note_32765