Bug 65878

Summary: scm.delete should delete empty parent directories as well
Product: WebKit Reporter: Adam Barth <abarth>
Component: New BugsAssignee: Adam Barth <abarth>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch eric: review+, eric: commit-queue-

Description Adam Barth 2011-08-08 14:29:40 PDT
scm.delete should delete empty parent directories as well
Comment 1 Adam Barth 2011-08-08 14:33:23 PDT
Created attachment 103295 [details]
Patch
Comment 2 Eric Seidel (no email) 2011-08-08 17:05:45 PDT
Comment on attachment 103295 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=103295&action=review

LGTM if you fix the self._filesystem issues.

> Tools/Scripts/webkitpy/common/checkout/scm/svn.py:179
> +        if set(os.listdir(path)) - self._svn_metadata_files:

Seems this should be self._filtesystem.listdir().  Also do we have other ignored files we should exclude?

> Tools/Scripts/webkitpy/common/checkout/scm/svn.py:182
> +        dirname = os.path.dirname(path)

self._filesystem.

> Tools/Scripts/webkitpy/common/checkout/scm/svn.py:188
> +        abs_path = os.path.abspath(path)
> +        parent, base = os.path.split(abs_path)

more self._filesystem.
Comment 3 Adam Barth 2011-08-08 17:10:44 PDT
Comment on attachment 103295 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=103295&action=review

>> Tools/Scripts/webkitpy/common/checkout/scm/svn.py:182
>> +        dirname = os.path.dirname(path)
> 
> self._filesystem.

Yeah, that's the right thing to do, but I don't see any code in svn.py that uses filesystem.  Maybe you never landed that patch?  These examples are all parallel with _add_parent_directories above.
Comment 4 Adam Barth 2011-08-08 17:11:36 PDT
Committed r92655: <http://trac.webkit.org/changeset/92655>