diff options
Diffstat (limited to 'native_client_sdk/src/test_all.py')
-rwxr-xr-x | native_client_sdk/src/test_all.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/native_client_sdk/src/test_all.py b/native_client_sdk/src/test_all.py index 2dc4d4c..5e9be95 100755 --- a/native_client_sdk/src/test_all.py +++ b/native_client_sdk/src/test_all.py @@ -3,9 +3,9 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. +import os import sys import unittest -import os # add tools folder to sys.path SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -13,27 +13,27 @@ sys.path.append(os.path.join(SCRIPT_DIR, 'tools', 'tests')) sys.path.append(os.path.join(SCRIPT_DIR, 'build_tools', 'tests')) TEST_MODULES = [ - 'getos_test', 'create_html_test', 'create_nmf_test', 'easy_template_test', + 'fix_deps_test', 'getos_test', 'httpd_test', 'oshelpers_test', 'parse_dsc_test', - 'sdktools_test', - 'sel_ldr_test', + 'quote_test', 'sdktools_commands_test', 'sdktools_config_test', + 'sdktools_test', + 'sel_ldr_test', 'update_nacl_manifest_test', - 'quote_test', + 'verify_filelist_test', ] def main(): suite = unittest.TestSuite() for module_name in TEST_MODULES: - __import__(module_name) - module = sys.modules[module_name] + module = __import__(module_name) suite.addTests(unittest.defaultTestLoader.loadTestsFromModule(module)) result = unittest.TextTestRunner(verbosity=2).run(suite) |