0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00

more debugging for freebsd

This commit is contained in:
Eliot Horowitz 2010-06-02 15:14:51 -04:00
parent ed66c6013e
commit 456d6a28d3

View File

@ -56,7 +56,9 @@ def cleanup( root ):
# NOTE: if we delete directories later, we can't delete diskfulltest
for ( dirpath , dirnames , filenames ) in os.walk( root , topdown=False ):
for x in filenames:
os.remove( dirpath + "/" + x )
foo = dirpath + "/" + x
print( "removing: " + foo )
os.remove( foo )
if __name__ == "__main__":