mirror of
https://github.com/darlinghq/darling-libxml2.git
synced 2024-12-03 09:50:51 +00:00
Tiny portability adjustment for win. Added runtest.exe and runsuite.exe to
* runsuite.c runtest.c: Tiny portability adjustment for win. * win32/Makefile.*: Added runtest.exe and runsuite.exe to be created.
This commit is contained in:
parent
91fe3edcaa
commit
87db1cf6d1
@ -1,3 +1,9 @@
|
||||
Tue Jul 5 12:38:36 CEST 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* runsuite.c runtest.c: Tiny portability adjustment for win.
|
||||
* win32/Makefile.*: Added runtest.exe and runsuite.exe to
|
||||
be created.
|
||||
|
||||
Mon Jul 4 17:44:26 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* runsuite.c: first stb at unimplemnted detection
|
||||
|
@ -31,7 +31,12 @@
|
||||
|
||||
#define LOGFILE "runsuite.log"
|
||||
FILE *logfile = NULL;
|
||||
int verbose = 0;
|
||||
int verbose = 0;
|
||||
|
||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||
#define vsnprintf _vsnprintf
|
||||
#define snprintf _snprintf
|
||||
#endif
|
||||
|
||||
/************************************************************************
|
||||
* *
|
||||
|
@ -110,7 +110,7 @@ static int glob(const char *pattern, int flags,
|
||||
WIN32_FIND_DATA FindFileData;
|
||||
HANDLE hFind;
|
||||
unsigned int nb_paths = 0;
|
||||
char directory[500], *tmp;
|
||||
char directory[500];
|
||||
int len;
|
||||
|
||||
if ((pattern == NULL) || (pglob == NULL)) return(-1);
|
||||
@ -669,11 +669,13 @@ static int loadMem(const char *filename, const char **mem, int *size) {
|
||||
while ((res = read(fd, &base[siz], info.st_size - siz)) > 0) {
|
||||
siz += res;
|
||||
}
|
||||
close(fd);
|
||||
close(fd);
|
||||
#if !defined(_WIN32)
|
||||
if (siz != info.st_size) {
|
||||
free(base);
|
||||
return(-1);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
base[siz] = 0;
|
||||
*mem = base;
|
||||
*size = siz;
|
||||
|
@ -214,7 +214,9 @@ UTILS = $(BINDIR)\xmllint.exe\
|
||||
$(BINDIR)\testSAX.exe\
|
||||
$(BINDIR)\testSchemas.exe\
|
||||
$(BINDIR)\testURI.exe\
|
||||
$(BINDIR)\testXPath.exe
|
||||
$(BINDIR)\testXPath.exe\
|
||||
$(BINDIR)\runtest.exe\
|
||||
$(BINDIR)\runsuite.exe
|
||||
|
||||
|
||||
!if "$(WITH_THREADS)" == "yes" || "$(WITH_THREADS)" == "ctls" || "$(WITH_THREADS)" == "native"
|
||||
|
@ -208,7 +208,9 @@ UTILS = $(BINDIR)/xmllint.exe\
|
||||
$(BINDIR)/testSAX.exe\
|
||||
$(BINDIR)/testSchemas.exe\
|
||||
$(BINDIR)/testURI.exe\
|
||||
$(BINDIR)/testXPath.exe
|
||||
$(BINDIR)/testXPath.exe\
|
||||
$(BINDIR)/runtest.exe\
|
||||
$(BINDIR)/runsuite.exe
|
||||
ifeq ($(WITH_THREADS),yes)
|
||||
UTILS += $(BINDIR)/testThreadsWin32.exe
|
||||
endif
|
||||
|
@ -193,7 +193,9 @@ UTILS = $(BINDIR)\xmllint.exe\
|
||||
$(BINDIR)\testSAX.exe\
|
||||
$(BINDIR)\testSchemas.exe\
|
||||
$(BINDIR)\testURI.exe\
|
||||
$(BINDIR)\testXPath.exe
|
||||
$(BINDIR)\testXPath.exe\
|
||||
$(BINDIR)\runtest.exe\
|
||||
$(BINDIR)\runsuite.exe
|
||||
!if "$(WITH_THREADS)" == "yes" || "$(WITH_THREADS)" == "ctls" || "$(WITH_THREADS)" == "native"
|
||||
UTILS = $(UTILS) $(BINDIR)\testThreadsWin32.exe
|
||||
!else if "$(WITH_THREADS)" == "posix"
|
||||
|
Loading…
Reference in New Issue
Block a user