Changeset 84118 in vbox
- Timestamp:
- Apr 30, 2020 5:34:54 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137708
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r84112 r84118 3562 3562 3563 3563 if not fRc: 3564 # Do some diagnosis to find out why this failed. 3564 3565 ## @todo Identify guest OS type and only run one of the following commands. 3565 3566 reporter.log('txsCdWait: Listing root contents of ${CDROM}:'); 3566 3567 oTxsSession.syncExec("/bin/ls", ("/bin/ls", "-al", "${CDROM}"), fIgnoreErrors = True); 3567 3568 # ASSUMES that we always install Windows on drive C right now. 3568 oTxsSession.syncExec("C:\\Windows\\System32\\cmd.exe", 3569 ("C:\\Windows\\System32\\cmd.exe", "/C", "dir", "${CDROM}"), 3569 sWinDir = "C:\\Windows\\System32\\"; 3570 oTxsSession.syncExec(sWinDir + " cmd.exe", 3571 (sWinDir + "cmd.exe", "/C", "dir", "${CDROM}"), 3570 3572 fIgnoreErrors = True); 3571 3573 oTxsSession.syncExec("C:\\WINNT\\System32\\cmd.exe", 3572 3574 ("C:\\WINNT\\System32\\cmd.exe", "/C", "dir", "${CDROM}"), 3575 fIgnoreErrors = True); 3576 3577 reporter.log('txsCdWait: Listing mount points / drives:'); 3578 oTxsSession.syncExec("/bin/mount", ("/bin/mount"), fIgnoreErrors = True); 3579 # Should work since WinXP Pro. 3580 oTxsSession.syncExec(sWinDir + "wbem\\WMIC.exe", 3581 (sWinDir + "wbem\\WMIC.exe", "logicaldisk", "get", 3582 "deviceid, volumename, description"), 3573 3583 fIgnoreErrors = True); 3574 3584
Note:
See TracChangeset
for help on using the changeset viewer.