diff options
author | 2018-08-21 11:01:26 +0530 | |
---|---|---|
committer | 2018-09-27 08:18:41 +0000 | |
commit | 19947738140e71d8d9fa90349e68f6261f5a612f (patch) | |
tree | 663ccab317082bf17dd5382fda754f56a57848c8 /resources/libraries/python/DMM/SetupDMMTest.py | |
parent | ebd0c7defaffdd6cd3ff2b5f580c86601917a0c7 (diff) |
integration of DMM+lwip testscripts
Change-Id: Ifb1a0702353e71c61a694dea5164df41f4e23389
Signed-off-by: sharath <sharathkumarboyanapally@gmail.com>
Diffstat (limited to 'resources/libraries/python/DMM/SetupDMMTest.py')
-rw-r--r-- | resources/libraries/python/DMM/SetupDMMTest.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/resources/libraries/python/DMM/SetupDMMTest.py b/resources/libraries/python/DMM/SetupDMMTest.py index 7d219fcfd4..7bb596546c 100644 --- a/resources/libraries/python/DMM/SetupDMMTest.py +++ b/resources/libraries/python/DMM/SetupDMMTest.py @@ -100,14 +100,15 @@ def install_dmm_test(node): ssh = SSH() ssh.connect(node) (ret_code, _, stderr) = ssh.exec_command( - 'cd {0}/{1} && ./install_dmm.sh {2} 2>&1 | tee log_install_dmm.txt' + 'cd {0}/{1} && ./install_prereq.sh {2} 2>&1 | tee ' + 'log_install_prereq.txt' .format(con.REMOTE_FW_DIR, con.DMM_SCRIPTS, arch), timeout=600) if ret_code != 0: logger.error('Install the DMM error: {0}'.format(stderr)) - raise RuntimeError('Install the DMM failed') + raise RuntimeError('Install prereq failed') else: - logger.console('Install the DMM on {0} success!'.format(node['host'])) + logger.console('Install prereq on {0} success!'.format(node['host'])) def setup_node(args): """Run all set-up methods for a node. |