On Tue, May 11, 2010 at 14:17, Greg Stein <gst...@gmail.com> wrote: > On Tue, May 11, 2010 at 12:39, Philip Martin <philip.mar...@wandisco.com> > wrote: >... >> It appears that the main testsuite doesn't check status on missing, >> deleted directories. 942170 is when a simple 'svn st' started >> failing, 'svn st -u' has been failing for much longer. There is some
The key piece was an svn_wc__adm_missing() check before recursing on a subdirectory. I removed that in r37361 a year ago, and put an svn_wc__get_entry() call in its place. That would have error'd if it could not retrieve the "real" data. (tho the error check was wrong... no biggy) Last August, r38991 replaced all the entry logic with some other wc-ng gunk, and the check was lost entirely. So today, the crawler attempts to recurse "into" an obstructing file. Whoops. This should be a pretty simple fix... Cheers, -g