You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/07/08 20:47:02 UTC

svn commit: r1500876 - /accumulo/branches/1.4/test/system/auto/simple/zooCacheTest.py

Author: ecn
Date: Mon Jul  8 18:47:01 2013
New Revision: 1500876

URL: http://svn.apache.org/r1500876
Log:
ACCUMULO-1557 applying Jonathan Hsieh's patch

Modified:
    accumulo/branches/1.4/test/system/auto/simple/zooCacheTest.py

Modified: accumulo/branches/1.4/test/system/auto/simple/zooCacheTest.py
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/test/system/auto/simple/zooCacheTest.py?rev=1500876&r1=1500875&r2=1500876&view=diff
==============================================================================
--- accumulo/branches/1.4/test/system/auto/simple/zooCacheTest.py (original)
+++ accumulo/branches/1.4/test/system/auto/simple/zooCacheTest.py Mon Jul  8 18:47:01 2013
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 import os
-
+import shutil
 import unittest
 import time
 
@@ -30,6 +30,7 @@ class ZooCacheTest(TestUtilsMixin, unitt
         self.create_config_file(self.settings.copy())
         
     def runTest(self):
+        shutil.rmtree('/tmp/zcTest-42')
         handleCC = self.runClassOn('localhost', 'org.apache.accumulo.server.test.functional.CacheTestClean', ['/zcTest-42','/tmp/zcTest-42'])
         self.waitForStop(handleCC, 10)
         handleR1 = self.runClassOn('localhost', 'org.apache.accumulo.server.test.functional.CacheTestReader', ['/zcTest-42','/tmp/zcTest-42', ZOOKEEPERS])