This commit is contained in:
Simon Xiao 2018-05-29 15:01:22 -07:00
Родитель 7ec5bab32e
Коммит caf92cc9c3
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -30,8 +30,8 @@ UpdateTestState()
############################################################
LogMsg "*********INFO: Starting test execution ... *********"
lspci=$(lspci)
LogMsg $lspci
OUTPUT="$(lspci)"
LogMsg "${OUTPUT}"
lspci | grep -i "Mellanox"

Просмотреть файл

@ -12,7 +12,6 @@ if ($isDeployed)
LogMsg "Executing : $($currentTestData.testScript)"
RunLinuxCmd -username $user -password $password -ip $AllVMData.PublicIP -port $AllVMData.SSHPort -command "bash -c ./$($currentTestData.testScript)" -runAsSudo
RunLinuxCmd -username $user -password $password -ip $AllVMData.PublicIP -port $AllVMData.SSHPort -command "mv Runtime.log $($currentTestData.testScript).log" -runAsSudo
RemoteCopy -download -downloadFrom $AllVMData.PublicIP -files "/home/$user/TestState.log, /home/$user/TestExecution.log" -downloadTo $LogDir -port $AllVMData.SSHPort -username $user -password $password
$testResult = Get-Content $LogDir\TestState.log
LogMsg "Test result : $testResult"