Refactored benchmarks to conform to cpp spec

This commit is contained in:
Jason Paryani
2013-11-18 13:05:56 -08:00
parent 42da9f4101
commit 895f74547c
13 changed files with 175 additions and 122 deletions

10
benchmark/bin/pycapnp-carsales Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python
from runner import parse_args_simple, run_test
def main():
args = parse_args_simple()
run_test(name='carsales', suffix='pycapnp', **vars(args))
if __name__ == '__main__':
main()