Thomas Vachuska
Committed by Gerrit Code Review

Small stc scenario fixes and simplifications.

Change-Id: I31e639016ab0050f7e5358bf9d3db86182229f30
...@@ -24,7 +24,8 @@ ...@@ -24,7 +24,8 @@
24 <step name="Install-App" requires="^" 24 <step name="Install-App" requires="^"
25 exec="onos-app ${OCI} install! target/test-app-1.2.3.oar"/> 25 exec="onos-app ${OCI} install! target/test-app-1.2.3.oar"/>
26 <step name="Verify-App" requires="^" delay="5" 26 <step name="Verify-App" requires="^" delay="5"
27 - exec="onos-check-components ${OCI} org.test.app.AppComponent"/> 27 + exec="onos ${OCI} scr:details org.test.app.AppComponent"
28 + FIXME="onos-check-components ${OCI} org.test.app.AppComponent"/>
28 29
29 <step name="Create-App-CLI-Overlay" requires="Install-App" 30 <step name="Create-App-CLI-Overlay" requires="Install-App"
30 exec="onos-create-app cli org.test.app test-app 1.2.3 org.test.app -DinteractiveMode=false"/> 31 exec="onos-create-app cli org.test.app test-app 1.2.3 org.test.app -DinteractiveMode=false"/>
......
...@@ -37,10 +37,7 @@ ...@@ -37,10 +37,7 @@
37 <step name="Balance-Masters" requires="~Check-Summary" if="${OC2}" 37 <step name="Balance-Masters" requires="~Check-Summary" if="${OC2}"
38 exec="onos ${OC1} balance-masters"/> 38 exec="onos ${OC1} balance-masters"/>
39 39
40 - <step name="Pause-For-Masters" requires="Balance-Masters" if="${OC2}" 40 + <step name="Check-Flows" requires="~Balance-Masters,~Check-Summary" delay="10"
41 - exec="sleep 10"/>
42 -
43 - <step name="Check-Flows" requires="~Pause-For-Masters,~Check-Summary"
44 exec="onos-check-flows ${OC1}"/> 41 exec="onos-check-flows ${OC1}"/>
45 </group> 42 </group>
46 </scenario> 43 </scenario>
......