Eli Bendersky | 3921e8e | 2010-05-21 09:05:39 +0300 | [diff] [blame^] | 1 | #!/usr/bin/env python |
2 | |||||
3 | import unittest | ||||
4 | |||||
5 | |||||
6 | suite = unittest.TestLoader().loadTestsFromNames( | ||||
7 | [ | ||||
8 | 'test_c_lexer', | ||||
9 | 'test_c_ast', | ||||
10 | 'test_general', | ||||
11 | 'test_c_parser', | ||||
12 | ] | ||||
13 | ) | ||||
14 | |||||
15 | unittest.TextTestRunner(verbosity=1).run(suite) |