-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
preparing to make testsuite releases along with code source releases …
…fixed * xstc/Makefile.am README README.tests Makefile.tests Makefile.am: preparing to make testsuite releases along with code source releases * gentest.py testapi.c: fixed a couple of problem introduced by the new Schemas support for Readers * xpath.c: fixed the XPath attribute:: bug #309580, #309864 in a crude but simple way. * xmlschemas.c include/libxml/tree.h: fixed a couple of problems raised by the doc builder. * doc/*: made rebuild Daniel
- Loading branch information
Daniel Veillard
committed
Jul 10, 2005
1 parent
df4223e
commit 1f33c4d
Showing
48 changed files
with
9,512 additions
and
9,121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
Sun Jul 10 23:33:41 CEST 2005 Daniel Veillard <[email protected]> | ||
|
||
* xstc/Makefile.am README README.tests Makefile.tests Makefile.am: | ||
preparing to make testsuite releases along with code source releases | ||
* gentest.py testapi.c: fixed a couple of problem introduced by | ||
the new Schemas support for Readers | ||
* xpath.c: fixed the XPath attribute:: bug #309580, #309864 in a crude | ||
but simple way. | ||
* xmlschemas.c include/libxml/tree.h: fixed a couple of problems | ||
raised by the doc builder. | ||
* doc/*: made rebuild | ||
|
||
Sun Jul 10 21:51:16 CEST 2005 Daniel Veillard <[email protected]> | ||
|
||
* xmlschemas.c: fixed a bug introduced on last commit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# | ||
# You may have to ajust to call the right compiler, or other oprions | ||
# for compiling and linking | ||
# | ||
|
||
CFLAGS=`xml2-config --cflags` | ||
LIBS=`xml2-config --libs` | ||
THREADLIB= -lpthread | ||
EXEEXT= | ||
|
||
all: runtest$(EXEEXT) runsuite$(EXEEXT) testapi$(EXEEXT) | ||
|
||
clean: | ||
$(RM) runtest$(EXEEXT) runsuite$(EXEEXT) testapi$(EXEEXT) | ||
|
||
check: do_runtest do_runsuite do_testapi | ||
|
||
runtest$(EXEEXT): runtest.c | ||
$(CC) -o runtest$(EXEEXT) $(CFLAGS) runtest.c $(LIBS) $(THREADLIB) | ||
|
||
do_runtest: runtest$(EXEEXT) | ||
./runtest | ||
|
||
runsuite$(EXEEXT): runsuite.c | ||
$(CC) -o runsuite$(EXEEXT) $(CFLAGS) runsuite.c $(LIBS) | ||
|
||
do_runsuite: runsuite$(EXEEXT) | ||
./runsuite | ||
|
||
testapi$(EXEEXT): testapi.c | ||
$(CC) -o testapi$(EXEEXT) $(CFLAGS) testapi.c $(LIBS) | ||
|
||
do_testapi: testapi$(EXEEXT) | ||
./testapi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
README.tests | ||
|
||
Instructions for standalone test regressions of libxml2 | ||
|
||
libxml2-tests-$version.tar.gz contains 3 standalone C programs as well | ||
as a large amount of tests and results coming from libxml2 itself and | ||
from W3C, NIST, Sun Microsystems, Microsoft and James Clark. Each C | ||
program has a different testing purpose: | ||
|
||
runtest.c : runs libxml2 basic internal regression tests | ||
runsuite.c: runs libxml2 against external regression tests | ||
testapi.c : exercises the library public entry points | ||
|
||
The command: | ||
|
||
make -f Makefile.tests | ||
|
||
should be sufficient on an Unix system to build and exercise the tests | ||
for the version of the library installed on the system. Note however | ||
that there isn't backward compatibility provided so if the installed | ||
version is older to the testsuite one, failing to compile or run the tests | ||
is likely. In any event this won't work with an installed libxml2 older | ||
than 2.6.20. | ||
Building on other platfroms should be a matter of compiling the C files | ||
like any other program using libxml2, running the test should be done | ||
simply by launching the resulting executables. | ||
|
||
Daniel Veillard | ||
Sun Jul 10 2005 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.