From 1945f381b21efb40ca1411c0ffb6ea76dd835e27 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 12 Sep 2020 02:57:18 +0530 Subject: unit tests: Print total time taken for running tests --- run_unittests.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'run_unittests.py') diff --git a/run_unittests.py b/run_unittests.py index bace349..5524c9e 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import typing as T +import time import stat import subprocess import re @@ -9052,4 +9052,8 @@ def main(): if __name__ == '__main__': print('Meson build system', mesonbuild.coredata.version, 'Unit Tests') - raise SystemExit(main()) + start = time.monotonic() + try: + raise SystemExit(main()) + finally: + print('Total time: {:.3f} seconds'.format(time.monotonic() - start)) -- cgit v1.1