aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-04-12 09:09:17 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-04-12 09:09:17 -0700
commitd835aa39d3f5a9ad247ea4dafa28da493f8352be (patch)
treea18dc07c6bbe4d58c4e43330c4c064be974752cd /tools
parentdc3806c672ab8cd4ec0e03add1cf138c69cfd444 (diff)
Cleanup output: omit unnecessary columns
Diffstat (limited to 'tools')
-rwxr-xr-xtools/profiling/microbenchmarks/bm_diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py
index 2337f2b282..35a79593b4 100755
--- a/tools/profiling/microbenchmarks/bm_diff.py
+++ b/tools/profiling/microbenchmarks/bm_diff.py
@@ -226,7 +226,7 @@ really_interesting = set()
for name, bm in benchmarks.items():
print name
really_interesting.update(bm.process())
-fields = [f for f in args.track if f in args.track]
+fields = [f for f in args.track if f in really_interesting]
headers = ['Benchmark'] + fields
rows = []