summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-03-06 04:14:22 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-03-06 04:15:44 +0100
commit77d1cc9302f2b18cec6763967e53ad8cbcce36c5 (patch)
tree08cabb61dad9d3c7a4f5143d3e3716b60dccffa2
parent00d4f53298ccd1a6e0b5f8b9f60df82bc746f29f (diff)
Simplify test suite logging
No great need to log timestamps anymore.
-rw-r--r--testsuite.py7
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