diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-03-06 04:14:22 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-03-06 04:15:44 +0100 |
| commit | 77d1cc9302f2b18cec6763967e53ad8cbcce36c5 (patch) | |
| tree | 08cabb61dad9d3c7a4f5143d3e3716b60dccffa2 /testsuite.py | |
| parent | 00d4f53298ccd1a6e0b5f8b9f60df82bc746f29f (diff) | |
Simplify test suite logging
No great need to log timestamps anymore.
Diffstat (limited to 'testsuite.py')
| -rw-r--r-- | testsuite.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testsuite.py b/testsuite.py index 3fefb64..b82bc15 100644 --- a/testsuite.py +++ b/testsuite.py @@ -52,7 +52,6 @@ import subprocess import sys import tempfile import textwrap -import time def shell(cmd): with open(os.devnull, "w") as devnull: @@ -2051,10 +2050,8 @@ def test_defconfig(conf, arch, srcarch): fail() if log: with open("test_defconfig_fails", "a") as fail_log: - fail_log.write("{} {} with {} did not match\n" - .format(time.strftime("%d %b %Y %H:%M:%S", - time.localtime()), - arch, defconfig)) + fail_log.write("{} with {} did not match\n" + .format(arch, defconfig)) # # Helper functions |
