blob: e5f99e63fa0d29eee6e46a4df5970e113d44633c [file] [log] [blame]
# removes all files created during testing
import glob
import os
paths = []
for pattern in [ '*.actual', '*.actual-rewrite', '*.rewrite', '*.process-output' ]:
paths += glob.glob( pattern )
for path in paths:
os.unlink( path )