| Index: native_client_sdk/src/build_tools/tests/test_all.py
|
| diff --git a/native_client_sdk/src/build_tools/tests/test_all.py b/native_client_sdk/src/build_tools/tests/test_all.py
|
| index 934fc18e04b52029d99ce3f359fe296b2a9b0cb0..0d3cf7a9f403aaf2aa693b44544f91bbdbc24a10 100755
|
| --- a/native_client_sdk/src/build_tools/tests/test_all.py
|
| +++ b/native_client_sdk/src/build_tools/tests/test_all.py
|
| @@ -10,13 +10,15 @@ import os
|
| # add tools folder to sys.path
|
| SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
|
| SDK_DIR = os.path.dirname(os.path.dirname(SCRIPT_DIR))
|
| -sys.path.append(os.path.join(SDK_DIR, 'tools'))
|
| +sys.path.append(os.path.join(SDK_DIR, 'tools', 'tests'))
|
|
|
| TEST_MODULES = [
|
| - 'zip_test',
|
| - 'test_sdktools',
|
| - 'test_sdktools_commands',
|
| - 'test_update_nacl_manifest',
|
| + 'oshelpers_test',
|
| + 'httpd_test',
|
| + 'sdktools_test',
|
| + 'sdktools_commands_test',
|
| + 'update_nacl_manifest_test',
|
| + 'generate_make_test'
|
| ]
|
|
|
| def main():
|
|
|