]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
tahoe_fuse: system test: factor out some cleanup code.
authornejucomo <nejucomo@gmail.com>
Mon, 21 Jan 2008 00:54:48 +0000 (17:54 -0700)
committernejucomo <nejucomo@gmail.com>
Mon, 21 Jan 2008 00:54:48 +0000 (17:54 -0700)
contrib/fuse/runtests.py

index 5c55d9bd3095646e2463b37c0be2f6250b83e5b2..41ec4a34d175bad7c3784e438a7b5603db5f4345 100644 (file)
@@ -96,11 +96,7 @@ class SystemTest (object):
             
         finally:
             print 'Removing introducer directory.'
-            try:
-                shutil.rmtree(self.introbase)
-            except Exception, e:
-                print 'Exception removing test client directory: %r' % (self.introbase,)
-                print 'Ignoring cleanup exception: %r' % (e,)
+            self.cleanup_dir(self.introbase)
     
     def launch_introducer_layer(self):
         print 'Launching introducer.'
@@ -136,11 +132,7 @@ class SystemTest (object):
             
         finally:
             print 'Removing client directory.'
-            try:
-                shutil.rmtree(self.clientbase)
-            except Exception, e:
-                print 'Exception removing test client directory: %r' % (self.clientbase,)
-                print 'Ignoring cleanup exception: %r' % (e,)
+            self.cleanup_dir(self.clientbase)
     
     def configure_client_layer(self):
         print 'Configuring client.'
@@ -224,6 +216,12 @@ class SystemTest (object):
             tmpl += 'Actual directory: %r\n'
             raise self.SetupFailure(tmpl, expdir, m.group(1))
 
+    def cleanup_dir(self, path):
+        try:
+            shutil.rmtree(path)
+        except Exception, e:
+            print 'Exception removing test directory: %r' % (path,)
+            print 'Ignoring cleanup exception: %r' % (e,)
 
     # SystemTest Exceptions:
     class Failure (Exception):