blob: 0a1374f3dfed19a0d43d5bddaa64cdcd933be4b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/env python
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
import unittest
import os
# add tools folder to sys.path
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.join(SCRIPT_DIR, 'tools', 'tests'))
sys.path.append(os.path.join(SCRIPT_DIR, 'build_tools', 'tests'))
TEST_MODULES = [
'oshelpers_test',
'getos_test',
'create_nmf_test',
'easy_template_test',
'httpd_test',
'sdktools_test',
'sdktools_commands_test',
'update_nacl_manifest_test',
'parse_dsc_test'
]
def main():
suite = unittest.TestSuite()
for module_name in TEST_MODULES:
__import__(module_name)
module = sys.modules[module_name]
suite.addTests(unittest.defaultTestLoader.loadTestsFromModule(module))
result = unittest.TextTestRunner(verbosity=2).run(suite)
return int(not result.wasSuccessful())
if __name__ == '__main__':
sys.exit(main())
|