Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
github.com
/
open-source-parsers
/
jsoncpp
/
2d4dd281f18806556dc79bb99c5f8dc72cf0d0ee
/
.
/
test
/
cleantests.py
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
)