Changeset 102915 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Jan 17, 2024 10:44:21 AM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 161141
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r102895 r102915 3140 3140 3141 3141 # Paths: 3142 sVBoxControl = None; # # @todo Get path of installed Guest Additions. Later.3142 sVBoxControl = None; # Only available on supported Windows guests. 3143 3143 sShell = self.oTstDrv.getGuestSystemShell(oTestVm); 3144 3144 sShellOpt = '/C' if oTestVm.isWindows() or oTestVm.isOS2() else '-c'; … … 3149 3149 sImageOut = self.oTstDrv.getGuestSystemShell(oTestVm); 3150 3150 if oTestVm.isWindows(): 3151 sVBoxControl = "C:\\Program Files\\Oracle\\VirtualBox Guest Additions\\VBoxControl.exe";3151 sVBoxControl = oTestVm.pathJoin(self.oTstDrv.getGuestWinDir(oTestVm), 'VBoxControl.exe'); 3152 3152 else: 3153 3153 # Really old guests (like OL 6) have their coreutils in /bin instead of /usr/bin.
Note:
See TracChangeset
for help on using the changeset viewer.