From 084a0743189363c8c03aae1fe6766ae92a4469a3 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 11 Dec 2009 23:35:26 +0100 Subject: run all tests with a single executable --- all_tests.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 all_tests.py (limited to 'all_tests.py') diff --git a/all_tests.py b/all_tests.py new file mode 100755 index 00000000..b408b5de --- /dev/null +++ b/all_tests.py @@ -0,0 +1,11 @@ +#!/usr/bin/python3 +import unittest +from test import * + +tests = [] +for key, val in vars().copy().items(): + if key.startswith('tc_'): + tests.extend(v for k,v in vars(val).items() if type(v) == type) + +suite = unittest.TestSuite(map(unittest.makeSuite, tests)) +unittest.TextTestRunner(verbosity=2).run(suite) -- cgit 1.4.1-2-gfad0 orm.submit();'> Profanity fork with TTY improvementsdanisanti <danisanti@tilde.institute>
about summary refs log tree commit diff stats
path: root/tests/unittests/test_preferences.h
blob: 84438e95a1a340aea612ab1f3b56a17cfdc7de46 (plain) (blame)
1
2
3