Changeset 61204 in vbox
- Timestamp:
- May 26, 2016 9:33:53 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107493
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstVBoxMultipleVM.cpp
r61099 r61204 152 152 rc = TST_COM_EXPR(machine->COMGETTER(State)(&machineState)); 153 153 // check that machine is in running state 154 if ( machineState == MachineState_Running 155 || machineState == MachineState_Paused) 154 if ( SUCCEEDE(rc) 155 && ( machineState == MachineState_Running 156 || machineState == MachineState_Paused)) 156 157 { 157 158 ComPtr<IConsole> console;
Note:
See TracChangeset
for help on using the changeset viewer.