Changeset 84165 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 6, 2020 3:34:03 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137769
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r84137 r84165 331 331 """ 332 332 333 sUser = oTestVm.getTestUser(); 334 ## @todo Do we need to get/use the test user's password as well here somehow? 335 333 336 # 334 337 # Install the public signing key. … … 337 340 fRc = self.txsRunTest(oTxsSession, 'VBoxCertUtil.exe', 1 * 60 * 1000, '${CDROM}/cert/VBoxCertUtil.exe', 338 341 ('${CDROM}/cert/VBoxCertUtil.exe', 'add-trusted-publisher', '${CDROM}/cert/vbox-sha1.cer'), 339 fCheckSessionStatus = True);342 sAsUser = sUser, fCheckSessionStatus = True); 340 343 if not fRc: 341 344 reporter.error('Error installing SHA1 certificate'); … … 343 346 fRc = self.txsRunTest(oTxsSession, 'VBoxCertUtil.exe', 1 * 60 * 1000, '${CDROM}/cert/VBoxCertUtil.exe', 344 347 ('${CDROM}/cert/VBoxCertUtil.exe', 'add-trusted-publisher', 345 '${CDROM}/cert/vbox-sha256.cer'), fCheckSessionStatus = True); 348 '${CDROM}/cert/vbox-sha256.cer'), 349 sAsUser = sUser, fCheckSessionStatus = True); 346 350 if not fRc: 347 351 reporter.error('Error installing SHA256 certificate'); … … 368 372 '"HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Setup"', 369 373 '/v', 'LogLevel', '/t', 'REG_DWORD', '/d', '0xFF'), 370 fCheckSessionStatus = True);374 sAsUser = sUser, fCheckSessionStatus = True); 371 375 372 376 for sFile in asLogFiles: … … 379 383 # 380 384 fRc = self.txsRunTest(oTxsSession, 'VBoxWindowsAdditions.exe', 5 * 60 * 1000, '${CDROM}/VBoxWindowsAdditions.exe', 381 ('${CDROM}/VBoxWindowsAdditions.exe', '/S', '/l', '/with_autologon'), fCheckSessionStatus = True); 385 ('${CDROM}/VBoxWindowsAdditions.exe', '/S', '/l', '/with_autologon'), 386 sAsUser = sUser, fCheckSessionStatus = True); 382 387 383 388 #
Note:
See TracChangeset
for help on using the changeset viewer.