aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Ogden <bernie.ogden@linaro.org>2014-06-25 16:08:40 +0100
committerBernard Ogden <bernie.ogden@linaro.org>2014-06-25 16:08:40 +0100
commitd4093a0f60a38b94ac7c52c683ce6ee4f6969cff (patch)
tree27a71bef182ff6836259de3475400f3a6e9b80c8
parentd41f8a8cbf9986becc51791c195c2102b5245f68 (diff)
Only remove bounce from tests if we have generated it
-rw-r--r--scripts/plot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/plot.py b/scripts/plot.py
index a5c61fc..c00d770 100644
--- a/scripts/plot.py
+++ b/scripts/plot.py
@@ -67,7 +67,8 @@ def parse():
def plot(records, field, scale, ylabel):
variants = unique(records, 'variant')
tests = unique(records, 'test')
- tests.remove('bounce')
+ if 'bounce' in tests:
+ tests.remove('bounce')
colours = libplot.make_colours()