Changeset 86442 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Oct 4, 2020 12:08:27 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140745
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r84946 r86442 1660 1660 """ 1661 1661 1662 # parse the arguments. 1662 # 1663 # Parse the arguments. 1664 # 1663 1665 if asArgs is None: 1664 1666 asArgs = list(sys.argv); … … 1690 1692 return rtexitcode.RTEXITCODE_SYNTAX; 1691 1693 1692 # execte the actions. 1694 # 1695 # Execte the actions. 1696 # 1693 1697 fRc = True; # Tristate - True (success), False (failure), None (skipped). 1694 asActions = self.asActions;1698 asActions = list(self.asActions); # Must copy it or vboxinstaller.py breaks. 1695 1699 if 'extract' in asActions: 1696 1700 reporter.log('*** extract action ***'); … … 1759 1763 fRc = False; 1760 1764 1761 # Done 1765 # 1766 # Done - report the final result. 1767 # 1762 1768 if fRc is None: 1763 1769 if self.fBadTestbox:
Note:
See TracChangeset
for help on using the changeset viewer.