about summary refs log tree commit diff stats
path: root/subx_bare.md
Commit message (Expand)AuthorAgeFilesLines
* .Kartik Agaram2021-03-291-3/+4
* fix some broken linksKartik K. Agaram2021-03-141-1/+1
* 7843 - clean up README after directory reorgKartik K. Agaram2021-03-031-13/+16
* 7439 - start translating Mu programs to baremetalKartik Agaram2020-12-281-3/+3
* 6640Kartik Agaram2020-07-121-32/+32
* 6618 - new docsKartik Agaram2020-07-061-0/+172
ter hut <hut@lavabit.com> 2009-12-12 00:23:18 +0100 clean ups/fixes' href='/akspecs/ranger/commit/all_tests.py?h=v1.4.3&id=22449efdeaec4ae089a6461ab93700536b5ea1bd'>22449efd ^
1
2
3
4
5
6
7
8
9
10
11
12
13
                  



                                                                   
 



                                                                                       
 

                                                                  
#!/usr/bin/python3
"""Run all the tests inside the test/ directory as a test suite."""
if __name__ == '__main__':
	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)