Changeset 84108 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Apr 30, 2020 2:37:19 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137697
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r84072 r84108 3514 3514 sFile = 'valkit.txt'; 3515 3515 3516 reporter.log2('txsCdWait: Waiting for file "%s" to become available ...' % (sFile,));3517 3518 3516 fRemoveVm = self.addTask(oSession); 3519 3517 fRemoveTxs = self.addTask(oTxsSession); … … 3524 3522 if fRc is True: 3525 3523 while True: 3524 reporter.log('txsCdWait: Waiting for file "%s" to become available ...' % (sFile,)); 3526 3525 # wait for it to complete. 3527 3526 oTask = self.waitForTasks(cMsTimeout2 + 1); … … 3549 3548 # delay. 3550 3549 self.sleep(1); 3550 3551 ## @todo Make this optional and identify guest OS type. 3552 reporter.log('txsCdWait: Listing root contents of ${CDROM}:'); 3553 oTxsSession.syncExec("/bin/ls", ("/bin/ls", "-al", "${CDROM}"), fIgnoreErrors = True); 3554 # ASSUMES that we always install Windows on drive C right now. 3555 # Does not run on ancient stuff which uses WINNT as %WinDir%. 3556 oTxsSession.syncExec("C:\\Windows\\System32\\cmd.exe", 3557 ("C:\\Windows\\System32\\cmd.exe", "/C", "dir", "${CDROM}"), 3558 fIgnoreErrors = True); 3551 3559 3552 3560 # resubmitt the task.
Note:
See TracChangeset
for help on using the changeset viewer.