- reorganized repository to match standard layout
diff --git a/test/cleantests.py b/test/cleantests.py
new file mode 100644
index 0000000..5872a87
--- /dev/null
+++ b/test/cleantests.py
@@ -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 )