Added a mandatory reboot to provision test.

This commit is contained in:
Shital Savekar 2018-01-15 02:43:21 -08:00
Родитель c51a4793b6
Коммит f76f67acb2
1 изменённых файлов: 13 добавлений и 4 удалений

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

@ -10,10 +10,19 @@ if ($isDeployed)
{
try
{
$RestartStatus = RestartAllDeployments -allVMData $allVMData
if($RestartStatus -eq "True")
{
LogMsg "Test Result : PASS."
$testResult = "PASS"
}
else
{
LogMsg "Test Result : FAIL."
$testResult = "FAIL"
}
}
catch
{