blob: 5872a87d88a6639f758758fae69d73fb8caa6da6 [file] [log] [blame]
Baptiste Lepilleur4cd8bae2007-03-15 22:11:38 +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 )