about summary refs log tree commit diff stats
path: root/045closure_name.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-06-15 14:48:52 -0700
committerKartik Agaram <vc@akkartik.com>2021-06-15 14:48:52 -0700
commit0138b000a1bfd29f85242d76384a3b3258e2ef26 (patch)
tree0236601e412e46bbe6f1cf3ba70bd5a2d71ba02e /045closure_name.cc
parent88378503c457656427b8eba9c6087fe5d9adc5e0 (diff)
downloadmu-0138b000a1bfd29f85242d76384a3b3258e2ef26.tar.gz
shell: improve docs
Diffstat (limited to '045closure_name.cc')
0 files changed, 0 insertions, 0 deletions
a id='n13' href='#n13'>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)