Index: native_client_sdk/src/tools/lib/tests/get_shared_deps_test.py |
diff --git a/native_client_sdk/src/tools/lib/tests/get_shared_deps_test.py b/native_client_sdk/src/tools/lib/tests/get_shared_deps_test.py |
index 2f35f785e813f7ed4db0346c9e0767e1c9c16c0f..0f39c0c448e29ed4dd111ee242627742d8a7afe3 100755 |
--- a/native_client_sdk/src/tools/lib/tests/get_shared_deps_test.py |
+++ b/native_client_sdk/src/tools/lib/tests/get_shared_deps_test.py |
@@ -13,10 +13,13 @@ import unittest |
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) |
LIB_DIR = os.path.dirname(SCRIPT_DIR) |
TOOLS_DIR = os.path.dirname(LIB_DIR) |
+SDK_DIR = os.path.dirname(TOOLS_DIR) |
DATA_DIR = os.path.join(SCRIPT_DIR, 'data') |
+BUILD_TOOLS_DIR = os.path.join(SDK_DIR, 'build_tools') |
sys.path.append(LIB_DIR) |
sys.path.append(TOOLS_DIR) |
+sys.path.append(BUILD_TOOLS_DIR) |
Sam Clegg
2014/06/18 18:21:30
These changes are not needed are they?
binji
2014/06/18 18:29:35
This test script doesn't run from the source direc
|
import build_paths |
import get_shared_deps |