mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-14 23:07:55 +02:00
- reorganized repository to match standard layout
This commit is contained in:
10
test/cleantests.py
Normal file
10
test/cleantests.py
Normal 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 )
|
Reference in New Issue
Block a user