Changeset 77472 in vbox
- Timestamp:
- Feb 26, 2019 3:55:06 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r77470 r77472 3293 3293 fRc = True; 3294 3294 for sGstFile in asFiles: 3295 sTmpFile = os.path.join(self.sScratchPath, 'tmp-' + os.path.basename(sGstFile)); 3296 reporter.log2('Downloading file "%s" to "%s" ...' % (sGstFile, sTmpFile)); 3295 3297 # First try to remove (unlink) an existing temporary file, as we don't truncate the file. 3296 3298 try: os.unlink(sTmpFile); … … 3298 3300 ## @todo Check for already existing files on the host and create a new 3299 3301 # name for the current file to download. 3300 sTmpFile = os.path.join(self.sScratchPath, 'tmp-' + os.path.basename(sGstFile));3301 reporter.log2('Downloading file "%s" to "%s" ...' % (sGstFile, sTmpFile));3302 3302 fRc = self.txsDownloadFile(oSession, oTxsSession, sGstFile, sTmpFile, 30 * 1000, fIgnoreErrors); 3303 3303 if fRc:
Note:
See TracChangeset
for help on using the changeset viewer.