Changeset 62795 in vbox
- Timestamp:
- Aug 1, 2016 9:03:19 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109382
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r62484 r62795 850 850 reporter.log('TESTBOX_TIMEOUT_ABS not found in the environment'); 851 851 852 853 852 # Distance from secTimeoutAbs that timeouts should be adjusted to. 854 853 self.secTimeoutFudge = 30; … … 856 855 # List of sub-test drivers (SubTestDriverBase derivatives). 857 856 self.aoSubTstDrvs = []; 857 858 # Use the scratch path for temporary files. 859 if self.sHost in ['win', 'os2']: 860 os.environ['TMP'] = self.sScratchPath; 861 os.environ['TEMP'] = self.sScratchPath; 862 os.environ['TMPDIR'] = self.sScratchPath; 863 os.environ['IPRT_TMPDIR'] = self.sScratchPath; # IPRT/VBox specific. 864 858 865 859 866 def dump(self):
Note:
See TracChangeset
for help on using the changeset viewer.