Skip to content

Commit

Permalink
Reduce size of variadic-test result data
Browse files Browse the repository at this point in the history
Delete formatted output after correctness checks. Only save the
performance data.
  • Loading branch information
dean0x7d committed Dec 21, 2015
1 parent fd4e429 commit a8ed595
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 a8ed595

Please sign in to comment.