diff --git a/utils/benchmark/benchmark-parse.py b/utils/benchmark/benchmark-parse.py index b2552fe2..dd984493 100644 --- a/utils/benchmark/benchmark-parse.py +++ b/utils/benchmark/benchmark-parse.py @@ -32,7 +32,7 @@ def measure_parse(text, n, progress_cb): def measure_file(filename, n): progress_cb = lambda i: print('.', sep='', end='', flush=True) with open(filename) as f: - print('%-20s' % os.path.basename(filename), end='', flush=True) + print('%-25s' % os.path.basename(filename), end='', flush=True) text = f.read() times = measure_parse(text, n, progress_cb) print(' Mean: %.3f Stddev: %.3f' % (statistics.mean(times), diff --git a/utils/benchmark/inputs/redis.c.pp b/utils/benchmark/inputs/redis.c.ppout similarity index 100% rename from utils/benchmark/inputs/redis.c.pp rename to utils/benchmark/inputs/redis.c.ppout diff --git a/utils/benchmark/inputs/sqlite-btree.c.pp b/utils/benchmark/inputs/sqlite-btree.c.ppout similarity index 100% rename from utils/benchmark/inputs/sqlite-btree.c.pp rename to utils/benchmark/inputs/sqlite-btree.c.ppout diff --git a/utils/benchmark/inputs/tccgen.c.pp b/utils/benchmark/inputs/tccgen.c.ppout similarity index 100% rename from utils/benchmark/inputs/tccgen.c.pp rename to utils/benchmark/inputs/tccgen.c.ppout