Changeset 99170 in vbox for trunk/src/VBox
- Timestamp:
- Mar 24, 2023 9:57:55 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r98992 r99170 3751 3751 fRemoveTxs = self.addTask(oTxsSession); 3752 3752 3753 reporter.log2('txsDoTask(%s): Running' % (str(fnAsync))); 3753 3754 rc = fnAsync(*aArgs); # pylint: disable=star-args 3754 3755 if rc is True: … … 3759 3760 rc = oTxsSession.getResult(); 3760 3761 elif fIgnoreErrors is True: 3761 reporter.log( 'txsDoTask : task failed (%s)' % (oTxsSession.getLastReply()[1],));3762 reporter.log( 'txsDoTask(%s): task failed (%s)' % (str(fnAsync), oTxsSession.getLastReply()[1],)); 3762 3763 else: 3763 reporter.error('txsDoTask : task failed (%s)' % (oTxsSession.getLastReply()[1],));3764 reporter.error('txsDoTask(%s): task failed (%s)' % (str(fnAsync), oTxsSession.getLastReply()[1],)); 3764 3765 else: 3765 3766 oTxsSession.cancelTask(); 3766 3767 if oTask is None: 3767 3768 if fIgnoreErrors is True: 3768 reporter.log( 'txsDoTask : The task timed out.');3769 reporter.log( 'txsDoTask(%s): The task timed out.' % (str(fnAsync))); 3769 3770 else: 3770 reporter.errorTimeout('txsDoTask : The task timed out.');3771 reporter.errorTimeout('txsDoTask(%s): The task timed out.' % (str(fnAsync))); 3771 3772 elif oTask is oSession: 3772 reporter.error('txsDoTask : The VM terminated unexpectedly');3773 reporter.error('txsDoTask(%s): The VM terminated unexpectedly' % (str(fnAsync))); 3773 3774 else: 3774 3775 if fIgnoreErrors is True: 3775 reporter.log( 'txsDoTask : An unknown task %s was returned' % (oTask,));3776 reporter.log( 'txsDoTask(%s): An unknown task %s was returned' % (str(fnAsync), oTask,)); 3776 3777 else: 3777 reporter.error('txsDoTask : An unknown task %s was returned' % (oTask,));3778 reporter.error('txsDoTask(%s): An unknown task %s was returned' % (str(fnAsync), oTask,)); 3778 3779 else: 3779 reporter.error('txsDoTask : fnAsync returned %s' % (rc,));3780 reporter.error('txsDoTask(%s) returned %s' % (str(fnAsync), rc,)); 3780 3781 3781 3782 if fRemoveTxs:
Note:
See TracChangeset
for help on using the changeset viewer.