summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew McDermott <andrew.mcdermott@linaro.org>2014-05-20 15:09:41 +0100
committerAndrew McDermott <andrew.mcdermott@linaro.org>2014-05-20 15:09:41 +0100
commitb1df0c5b38d4da92d57d3135a7b9caecdd496736 (patch)
tree7f95bda7b613d8a956f2e246705329d7186210f6
parent6db5efe38375f2d1e736bc5fd65d8dd2495307d1 (diff)
print-historic-results: add relative-to date for comparison
Signed-off-by: Andrew McDermott <andrew.mcdermott@linaro.org>
-rwxr-xr-xprint-historic-results.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/print-historic-results.py b/print-historic-results.py
index fe63198..6df8a91 100755
--- a/print-historic-results.py
+++ b/print-historic-results.py
@@ -51,7 +51,9 @@ and against the baseline performance of the client and server compilers \
on {}.".format(os.getenv('NGIGABYTES'), os.getenv('BASEDATE')))
body <= P("\
-Relative performance: Zero: 1.0, Client: {}, Server: {}".format(os.getenv('CLIENT_BASELINE'), os.getenv('SERVER_BASELINE')))
+Relative performance: Zero: 1.0, Client: {}, Server: {} taken on {}".format(os.getenv('CLIENT_BASELINE'),
+ os.getenv('SERVER_BASELINE'),
+ os.getenv('BASEDATE')))
table = TABLE(border=1)
table <= TR(TH('Date') + TH('JVM Variant') + TH('Relative performance'))