Added feature to support initial wait time after deployment.

This was required due to recent changes in waagent for RDMA driver
installation.
This commit is contained in:
Shital Savekar 2016-07-12 19:56:06 +00:00
Родитель 659e2e56a8
Коммит 513caf677f
2 изменённых файлов: 7 добавлений и 0 удалений

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

@ -5875,6 +5875,7 @@
<SupportedExecutionModes>AzureServiceManagement,AzureResourceManager</SupportedExecutionModes>
<SubtestValues>SOME,TEXTS,NEEDS,TO,BE,PRESENT,HERE,FOR,PRINTING,TEST,SUMMARY</SubtestValues>
<remoteFiles></remoteFiles>
<InitialWaitSeconds>300<InitialWaitSeconds>
<Priority>P0</Priority>
</test>
<test>
@ -5885,6 +5886,7 @@
<SupportedExecutionModes>AzureServiceManagement,AzureResourceManager</SupportedExecutionModes>
<SubtestValues>SOME,TEXTS,NEEDS,TO,BE,PRESENT,HERE,FOR,PRINTING,TEST,SUMMARY</SubtestValues>
<remoteFiles></remoteFiles>
<InitialWaitSeconds>300<InitialWaitSeconds>
<Priority>P0</Priority>
</test>
<test>

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

@ -955,6 +955,11 @@ Function VerifyAllDeployments($servicesToVerify, [Switch]$GetVMProvisionTime)
{
LogMsg ""
LogMsg "$serviceName is Ready.."
if ( $currentTestData.InitialWaitSeconds )
{
LogMsg "Waiting for initial wait time. $($currentTestData.InitialWaitSeconds) seconds."
WaitFor -seconds $currentTestData.InitialWaitSeconds
}
Write-Host ""
$retValue = "True"
}