apache/etags........NOK 61FAILED tests 1-5, 7-11, 13-14, 16-17, 19,
21-25, 27-34, 36-37, 39-42, 44-52, 54, 56-61
Failed 50/61 tests, 18.03% okay
apache/options......NOK 2FAILED tests
1-2
Failed 2/2 tests, 0.00% okay
The ETag tests yielded several segfaults:
#0 0x4003375b in apr_hash_next (hi=0x814b570) at apr_hash.c:151
151 if (hi->index > hi->ht->max)
(gdb) p *hi
$1 = {ht = 0x0, this = 0x0, next = 0x0, index = 0}
(gdb) up
#1 0x400337d7 in apr_hash_first (p=0x814a490, ht=0x0) at apr_hash.c:170
170 return apr_hash_next(hi);
(gdb) up
#2 0x08068fdc in make_allow (r=0x814a4c8) at http_protocol.c:1097
1097 apr_hash_index_t *hi = apr_hash_first(r->pool,
methods_registry);
(gdb) p methods_registry
$2 = (apr_hash_t *) 0x1317c5f
(gdb) p *methods_registry
Error accessing memory address 0x1317c5f: No such process.
(gdb) list
1092 static char *make_allow(request_rec *r)
1093 {
1094 char *list;
1095 apr_int64_t mask;
1096 apr_array_header_t *allow = apr_array_make(r->pool, 10,
sizeof(char *));
1097 apr_hash_index_t *hi = apr_hash_first(r->pool,
methods_registry);
1098
1099 mask = r->allowed_methods->method_mask;
1100
1101 for (; hi; hi = apr_hash_next(hi)) {