- reorganized repository to match standard layout

This commit is contained in:
Baptiste Lepilleur
2007-03-15 22:11:38 +00:00
parent d3a114c906
commit 4cd8bae331
103 changed files with 7722 additions and 0 deletions

10
test/cleantests.py Normal file
View File

@@ -0,0 +1,10 @@
# 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 )