Changeset 84529 in vbox
- Timestamp:
- May 26, 2020 8:29:44 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r84528 r84529 591 591 592 592 try: 593 eStatus, _ = oGuest.getFacilityStatus(eFacilityType); 594 reporter.log3('%s -> %s' % (sDesc, eStatus,)); 593 eStatus, tsLastUpdatedMs = oGuest.getFacilityStatus(eFacilityType); 595 594 except: 596 595 if fMustSucceed: … … 617 616 sStatus = "FAILED"; 618 617 fRc = not fMustSucceed; 619 el se:618 elif eStatus == vboxcon.AdditionsFacilityStatus_Unknown: 620 619 sStatus = "UNKNOWN"; 621 620 fRc = not fMustSucceed; 622 623 reporter.log('Guest Additions facility "%s": %s' % (sDesc, sStatus)); 621 else: 622 sStatus = "???"; 623 fRc = not fMustSucceed; 624 625 reporter.log('Guest Additions facility "%s": %s (last updated: %sms)' % (sDesc, sStatus, str(tsLastUpdatedMs))); 624 626 if fMustSucceed \ 625 627 and not fRc:
Note:
See TracChangeset
for help on using the changeset viewer.