Skip to content

Commit

Permalink
Merge pull request fmtlib#3 from dean0x7d/variadic-test
Browse files Browse the repository at this point in the history
Reduce size of variadic-test result data
  • Loading branch information
vitaut committed Dec 21, 2015
2 parents fd4e429 + a8ed595 commit 8bb47a5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions variadic-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,11 @@ def main():
for config, _ in configs:
check_output(data['printf'][config], data[method][config])

for method, _ in methods:
for config, _ in configs:
for result in data[method][config]:
del result['output']

with open('variadic-test.pkl', 'wb') as file:
pickle.dump(data, file)

Expand Down

0 comments on commit 8bb47a5

Please sign in to comment.