aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/DMM/SetupDMMTest.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/DMM/SetupDMMTest.py')
-rw-r--r--resources/libraries/python/DMM/SetupDMMTest.py7
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.