1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

regenerated fixed a compilation problem some cleanups and one bug fix

* elfgcchack.h testapi.c doc/*: regenerated
* schematron.c: fixed a compilation problem
* xmlregexp.c include/libxml/xmlregexp.h: some cleanups and one bug fix
* result/expr/base: slightly changes the number of Cons.
Daniel
This commit is contained in:
Daniel Veillard
2005-08-23 13:41:17 +00:00
parent 5eee767ca9
commit ccb4d41c13
28 changed files with 447 additions and 22 deletions

View File

@@ -32204,6 +32204,16 @@ test_xmlExpMaxToken(void) {
}
static int
test_xmlExpNewAtom(void) {
int test_ret = 0;
/* missing type support */
return(test_ret);
}
static int
test_xmlExpNewCtxt(void) {
int test_ret = 0;
@@ -32214,6 +32224,36 @@ test_xmlExpNewCtxt(void) {
}
static int
test_xmlExpNewOr(void) {
int test_ret = 0;
/* missing type support */
return(test_ret);
}
static int
test_xmlExpNewRange(void) {
int test_ret = 0;
/* missing type support */
return(test_ret);
}
static int
test_xmlExpNewSeq(void) {
int test_ret = 0;
/* missing type support */
return(test_ret);
}
static int
test_xmlExpParse(void) {
int test_ret = 0;
@@ -32705,7 +32745,7 @@ static int
test_xmlregexp(void) {
int test_ret = 0;
if (quiet == 0) printf("Testing xmlregexp : 16 of 26 functions ...\n");
if (quiet == 0) printf("Testing xmlregexp : 16 of 30 functions ...\n");
test_ret += test_xmlExpCtxtNbCons();
test_ret += test_xmlExpCtxtNbNodes();
test_ret += test_xmlExpDump();
@@ -32714,7 +32754,11 @@ test_xmlregexp(void) {
test_ret += test_xmlExpGetStart();
test_ret += test_xmlExpIsNillable();
test_ret += test_xmlExpMaxToken();
test_ret += test_xmlExpNewAtom();
test_ret += test_xmlExpNewCtxt();
test_ret += test_xmlExpNewOr();
test_ret += test_xmlExpNewRange();
test_ret += test_xmlExpNewSeq();
test_ret += test_xmlExpParse();
test_ret += test_xmlExpRef();
test_ret += test_xmlExpStringDerive();