Changeset 80698 in vbox for trunk/src/VBox
- Timestamp:
- Sep 10, 2019 12:27:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r80697 r80698 922 922 self._waitForTestManagerConnectivity(30); 923 923 924 # Upload the log on failure. Do it early if the extra cleanups below causes trouble. 924 925 if fRc is False and os.path.isfile(sLogFile): 925 926 reporter.addLogFile(sLogFile, 'log/uninstaller', "Verbose MSI uninstallation log file"); 927 sLogFile = None; 926 928 927 929 # Log driver service states (should ls \Driver\VBox* and \Device\VBox*). … … 963 965 if fHadLeftovers: 964 966 self._waitForTestManagerConnectivity(30); 967 968 # Upload the log if we have any leftovers and didn't upload it already. 969 if sLogFile is not None and (fRc is False or fHadLeftovers) and os.path.isfile(sLogFile): 970 reporter.addLogFile(sLogFile, 'log/uninstaller', "Verbose MSI uninstallation log file"); 965 971 966 972 return fRc;
Note:
See TracChangeset
for help on using the changeset viewer.