That file has been gone a long time. Please make sure that you have removed all 'no longer in hg' files before you run the tests, especially the 'compile the files' test. :)
I'm not sure how you do your development, but for me I always make sure that running bin/cvsreport.pl with no arguments shows up empty -- there should be no output.
If there is output, especially if it's a 'new-file' line, then those files have to be removed.
$ bin/cvsreport.pl -1 -n | xargs rm
That's the easiest way to remove everything marked 'new-file'. But even then, sometimes things don't show up if they're in a directory that vcv doesn't know about.
Every once in a while, I do a full clean.
$ rm -rf bin cgi-bin htdocs $ bin/cvsreport.pl -i
But be wary of that if you store things in any of those directories... it's safe for me, but I don't know your development style, so it may not be entirely safe for you.
no subject
Edit: You removed it (http://hg.dwscoalition.org/dw-free/rev/81b487a3f369) as part of FotoBilder removal (yay!), so that file shouldn't be in your directories anymore.
I'm not sure how you do your development, but for me I always make sure that running bin/cvsreport.pl with no arguments shows up empty -- there should be no output.
If there is output, especially if it's a 'new-file' line, then those files have to be removed.
$ bin/cvsreport.pl -1 -n | xargs rm
That's the easiest way to remove everything marked 'new-file'. But even then, sometimes things don't show up if they're in a directory that vcv doesn't know about.
Every once in a while, I do a full clean.
$ rm -rf bin cgi-bin htdocs
$ bin/cvsreport.pl -i
But be wary of that if you store things in any of those directories... it's safe for me, but I don't know your development style, so it may not be entirely safe for you.