blob: 5872a87d88a6639f758758fae69d73fb8caa6da6 [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 )