1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-02-06 05:57:39 +03:00

testapi: Disable on Windows for now

It's incredibly slow for some reason.
This commit is contained in:
Nick Wellnhofer 2022-09-04 18:49:23 +02:00
parent 27b2b86417
commit b0556e1449

View File

@ -124,6 +124,14 @@ int main(int argc, char **argv) {
int ret;
int blocks, mem;
#if defined(_WIN32)
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
printf("Skipping on Windows for now\n");
return(0);
#endif
#ifdef HAVE_PUTENV
/* access to the proxy can slow up regression tests a lot */
putenv((char *) "http_proxy=");