| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2012 Google Inc. All rights reserved. | 3 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 Runs small tests. | 8 Runs small tests. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 sys.path.append(os.path.join(test._cwd, 'pylib')) | 23 sys.path.append(os.path.join(test._cwd, 'pylib')) |
| 24 | 24 |
| 25 # Add new test suites here. | 25 # Add new test suites here. |
| 26 files_to_test = [ | 26 files_to_test = [ |
| 27 'pylib/gyp/MSVSSettings_test.py', | 27 'pylib/gyp/MSVSSettings_test.py', |
| 28 'pylib/gyp/easy_xml_test.py', | 28 'pylib/gyp/easy_xml_test.py', |
| 29 'pylib/gyp/generator/msvs_test.py', | 29 'pylib/gyp/generator/msvs_test.py', |
| 30 'pylib/gyp/generator/ninja_test.py', | 30 'pylib/gyp/generator/ninja_test.py', |
| 31 'pylib/gyp/generator/xcode_test.py', | 31 'pylib/gyp/generator/xcode_test.py', |
| 32 'pylib/gyp/common_test.py', | 32 'pylib/gyp/common_test.py', |
| 33 'pylib/gyp/input_test.py', |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 # Collect all the suites from the above files. | 36 # Collect all the suites from the above files. |
| 36 suites = [] | 37 suites = [] |
| 37 for filename in files_to_test: | 38 for filename in files_to_test: |
| 38 # Carve the module name out of the path. | 39 # Carve the module name out of the path. |
| 39 name = os.path.splitext(os.path.split(filename)[1])[0] | 40 name = os.path.splitext(os.path.split(filename)[1])[0] |
| 40 # Find the complete module path. | 41 # Find the complete module path. |
| 41 full_filename = os.path.join(test._cwd, filename) | 42 full_filename = os.path.join(test._cwd, filename) |
| 42 # Load the module. | 43 # Load the module. |
| 43 module = imp.load_source(name, full_filename) | 44 module = imp.load_source(name, full_filename) |
| 44 # Add it to the list of test suites. | 45 # Add it to the list of test suites. |
| 45 suites.append(unittest.defaultTestLoader.loadTestsFromModule(module)) | 46 suites.append(unittest.defaultTestLoader.loadTestsFromModule(module)) |
| 46 # Create combined suite. | 47 # Create combined suite. |
| 47 all_tests = unittest.TestSuite(suites) | 48 all_tests = unittest.TestSuite(suites) |
| 48 | 49 |
| 49 # Run all the tests. | 50 # Run all the tests. |
| 50 result = unittest.TextTestRunner(verbosity=2).run(all_tests) | 51 result = unittest.TextTestRunner(verbosity=2).run(all_tests) |
| 51 if result.failures or result.errors: | 52 if result.failures or result.errors: |
| 52 test.fail_test() | 53 test.fail_test() |
| 53 | 54 |
| 54 test.pass_test() | 55 test.pass_test() |
| OLD | NEW |