mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
more debugging for freebsd
This commit is contained in:
parent
ed66c6013e
commit
456d6a28d3
@ -56,7 +56,9 @@ def cleanup( root ):
|
|||||||
# NOTE: if we delete directories later, we can't delete diskfulltest
|
# NOTE: if we delete directories later, we can't delete diskfulltest
|
||||||
for ( dirpath , dirnames , filenames ) in os.walk( root , topdown=False ):
|
for ( dirpath , dirnames , filenames ) in os.walk( root , topdown=False ):
|
||||||
for x in filenames:
|
for x in filenames:
|
||||||
os.remove( dirpath + "/" + x )
|
foo = dirpath + "/" + x
|
||||||
|
print( "removing: " + foo )
|
||||||
|
os.remove( foo )
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user