Changeset 61474 in vbox for trunk/src/VBox/ValidationKit/testmanager/core/testboxcontroller.py
- Timestamp:
- Jun 5, 2016 9:02:01 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107801
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testboxcontroller.py
r61468 r61474 273 273 Cleans up any old test set that may be left behind and changes the 274 274 state to 'idle'. See scenario #9: 275 file://../../docs/AutomaticTestingRevamp.html#cleaning-up-abandon d-testcase275 file://../../docs/AutomaticTestingRevamp.html#cleaning-up-abandoned-testcase 276 276 277 277 Note. oStatusData.enmState is set to idle, but tsUpdated is not changed. 278 278 """ 279 279 280 # Cleanup any abandon d test.280 # Cleanup any abandoned test. 281 281 if oStatusData.idTestSet is not None: 282 SystemLogLogic(oDb).addEntry(SystemLogData.ksEvent_TestSetAbandon d,282 SystemLogLogic(oDb).addEntry(SystemLogData.ksEvent_TestSetAbandoned, 283 283 "idTestSet=%u idTestBox=%u enmState=%s %s" 284 284 % (oStatusData.idTestSet, oStatusData.idTestBox, 285 285 oStatusData.enmState, self._sAction), 286 286 fCommit = False); 287 TestSetLogic(oDb).completeAsAbandon d(oStatusData.idTestSet, fCommit = False);287 TestSetLogic(oDb).completeAsAbandoned(oStatusData.idTestSet, fCommit = False); 288 288 GlobalResourceLogic(oDb).freeGlobalResourcesByTestBox(self._idTestBox, fCommit = False); 289 289
Note:
See TracChangeset
for help on using the changeset viewer.