Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: native_client_sdk/src/build_tools/tests/test_all.py

Issue 11571032: [NaCl SDK] cleanup python unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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():

Powered by Google App Engine
This is Rietveld 408576698