Chromium Code Reviews| Index: native_client_sdk/src/test_all.py |
| diff --git a/native_client_sdk/src/test_all.py b/native_client_sdk/src/test_all.py |
| index 4a451f45a6254c7b9650d02cadee3968d9fa1cd1..54733e09c75222a576d794096944a3b3f3df12b4 100755 |
| --- a/native_client_sdk/src/test_all.py |
| +++ b/native_client_sdk/src/test_all.py |
| @@ -54,11 +54,13 @@ TEST_MODULES = [ |
| ] |
| def ExtractToolchains(): |
| - subprocess.check_output([sys.executable, PKG_VER, |
| - '--packages', ','.join(EXTRACT_PACKAGES), |
| - '--tar-dir', TAR_DIR, |
| - '--dest-dir', TOOLCHAIN_OUT, |
| - 'extract']) |
| + cmd = [sys.executable, PKG_VER, '--verbose', |
| + '--packages', ','.join(EXTRACT_PACKAGES), |
| + '--tar-dir', TAR_DIR, |
| + '--dest-dir', TOOLCHAIN_OUT, |
| + 'extract'] |
| + print(cmd) |
|
binji
2014/11/13 23:57:02
why?
Sam Clegg
2014/11/30 17:55:12
Dropped.
|
| + subprocess.check_output(cmd) |
| def main(): |
| # Some of the unit tests use parts of toolchains. Extract to TOOLCHAIN_OUT. |