I do not know why but i get the following error messages when running
tests:
Warning: Cannot get the virtual filepath of /usr/src/php4-HEAD/pear/PHPDoc
in /usr/src/php4-HEAD/run-tests.php on line 160
/usr/src/php4-HEAD/run-tests.php(160) : Warning - Cannot get the virtual
filepath of /usr/src/php4-HEAD/pear/PHPDoc
I tracked i down to filestat.c line 575:
#ifndef PHP_WIN32
#ifdef VIRTUAL_DIR
{
char *tmpname;
if (virtual_filepath(filename, &tmpname TSRMLS_CC)) {
php_error(E_WARNING, "Cannot get the virtual
filepath of %s\n", filename);
RETURN_FALSE;
}
filename = tmpname;
}
#endif
But i do not know when it last worked...
Any Help?