From 614ac78aa0bda9d7fcf1ef534bdf069777b84065 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Sun, 25 Jul 2004 18:50:25 +0000 Subject: add title and time for test suites (in xml output) --- python/tests/tests.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/tests') diff --git a/python/tests/tests.py b/python/tests/tests.py index 7c944b65..64e1cb06 100755 --- a/python/tests/tests.py +++ b/python/tests/tests.py @@ -28,6 +28,7 @@ import imp import sys +import time import unittest from XmlTestRunner import XmlTestRunner @@ -43,6 +44,8 @@ testSuites = ( if "--xml" in sys.argv: print """""" print """""" + print """ Python Bindings""" + print """ %s""" % time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) success = True for testSuite in testSuites: -- cgit