Changeset 106827 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Nov 5, 2024 8:57:46 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py
r106826 r106827 538 538 # Go to system specific installation code. 539 539 # 540 sHost = utils.getHostOs() 540 sHost = utils.getHostOs(); 541 541 if sHost == 'darwin': fRc = self._installVBoxOnDarwin(); 542 542 elif sHost == 'linux': fRc = self._installVBoxOnLinux(); … … 545 545 else: 546 546 reporter.error('Unsupported host "%s".' % (sHost,)); 547 fRc = False; 547 548 if fRc is False: 548 549 reporter.testFailure('Installation error.'); … … 574 575 reporter.testStart('Uninstalling VirtualBox'); 575 576 576 sHost = utils.getHostOs() 577 sHost = utils.getHostOs(); 577 578 if sHost == 'darwin': fRc = self._uninstallVBoxOnDarwin(); 578 579 elif sHost == 'linux': fRc = self._uninstallVBoxOnLinux(); … … 581 582 else: 582 583 reporter.error('Unsupported host "%s".' % (sHost,)); 584 fRc = None; # To make pylint happy. 583 585 if fRc is False and not fIgnoreError: 584 586 reporter.testFailure('Uninstallation failed.');
Note:
See TracChangeset
for help on using the changeset viewer.