summaryrefslogtreecommitdiff
path: root/test/testrunner/testrunner.py
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-04-06 15:01:16 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-04-06 15:01:17 +0000
commit06a0d47e46d162ba83551b254e82a9c69290a49e (patch)
tree122d865b1ec527949d26b350ab3d9d206d04513e /test/testrunner/testrunner.py
parent0dc3c953f3ba7eae3d1562e889bc13c0835b7879 (diff)
parent2679e49d2aa8a73b5b1b49eaa0b78d46e40f5cba (diff)
Merge "Testrunner: Fix output message"
Diffstat (limited to 'test/testrunner/testrunner.py')
-rwxr-xr-xtest/testrunner/testrunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testrunner/testrunner.py b/test/testrunner/testrunner.py
index 49dc657020..6a8b0aeb06 100755
--- a/test/testrunner/testrunner.py
+++ b/test/testrunner/testrunner.py
@@ -499,7 +499,7 @@ def run_test(command, test, test_variant, test_name):
else:
print_test_info(test_name, '')
except subprocess.TimeoutExpired as e:
- failed_tests.append((test_name, 'Timed out in %d seconds'))
+ failed_tests.append((test_name, 'Timed out in %d seconds' % timeout))
print_test_info(test_name, 'TIMEOUT', 'Timed out in %d seconds\n%s' % (
timeout, command))
except Exception as e: