summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'))