aboutsummaryrefslogtreecommitdiff
path: root/tools/jenkins/make_test_output.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/jenkins/make_test_output.py')
-rw-r--r--tools/jenkins/make_test_output.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/jenkins/make_test_output.py b/tools/jenkins/make_test_output.py
index 0ba5db3b..986d1979 100644
--- a/tools/jenkins/make_test_output.py
+++ b/tools/jenkins/make_test_output.py
@@ -58,8 +58,8 @@ def readtests(basedir):
# up in the job log.
tests["cpp"]["name"] = "cpp"
- # TODO
- tests["cpp"]["time"] = "0"
+ with open(basedir + '/logs/1/cpp/build_time', 'r') as f:
+ tests["cpp"]["time"] = f.read().strip()
tests["cpp"]["failure"] = False
ret = tests.values()