blob: e5f99e63fa0d29eee6e46a4df5970e113d44633c [file] [log] [blame]
Christopher Dunnf9864232007-06-14 21:01:26 +00001# removes all files created during testing
2import glob
3import os
4
5paths = []
6for pattern in [ '*.actual', '*.actual-rewrite', '*.rewrite', '*.process-output' ]:
7 paths += glob.glob( pattern )
8
9for path in paths:
10 os.unlink( path )