commit | 4cd8bae331989d824dac242860634eb8a5d20fa1 | [log] [tgz] |
---|---|---|
author | Baptiste Lepilleur <baptiste.lepilleur@gmail.com> | Thu Mar 15 22:11:38 2007 +0000 |
committer | Baptiste Lepilleur <baptiste.lepilleur@gmail.com> | Thu Mar 15 22:11:38 2007 +0000 |
tree | 0fa6e757f73a7c3f5fad11d29e59530c5b41cf6c | |
parent | d3a114c9063748795dbd49b716b8a132f4be1951 [diff] [blame] |
- 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 )