Changeset 84174 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- May 6, 2020 7:41:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r84165 r84174 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 336 333 # 337 334 # Install the public signing key. … … 340 337 fRc = self.txsRunTest(oTxsSession, 'VBoxCertUtil.exe', 1 * 60 * 1000, '${CDROM}/cert/VBoxCertUtil.exe', 341 338 ('${CDROM}/cert/VBoxCertUtil.exe', 'add-trusted-publisher', '${CDROM}/cert/vbox-sha1.cer'), 342 sAsUser = sUser,fCheckSessionStatus = True);339 fCheckSessionStatus = True); 343 340 if not fRc: 344 341 reporter.error('Error installing SHA1 certificate'); … … 346 343 fRc = self.txsRunTest(oTxsSession, 'VBoxCertUtil.exe', 1 * 60 * 1000, '${CDROM}/cert/VBoxCertUtil.exe', 347 344 ('${CDROM}/cert/VBoxCertUtil.exe', 'add-trusted-publisher', 348 '${CDROM}/cert/vbox-sha256.cer'), 349 sAsUser = sUser, fCheckSessionStatus = True); 345 '${CDROM}/cert/vbox-sha256.cer'), fCheckSessionStatus = True); 350 346 if not fRc: 351 347 reporter.error('Error installing SHA256 certificate'); … … 372 368 '"HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Setup"', 373 369 '/v', 'LogLevel', '/t', 'REG_DWORD', '/d', '0xFF'), 374 sAsUser = sUser,fCheckSessionStatus = True);370 fCheckSessionStatus = True); 375 371 376 372 for sFile in asLogFiles: … … 383 379 # 384 380 fRc = self.txsRunTest(oTxsSession, 'VBoxWindowsAdditions.exe', 5 * 60 * 1000, '${CDROM}/VBoxWindowsAdditions.exe', 385 ('${CDROM}/VBoxWindowsAdditions.exe', '/S', '/l', '/with_autologon'), 386 sAsUser = sUser, fCheckSessionStatus = True); 381 ('${CDROM}/VBoxWindowsAdditions.exe', '/S', '/l', '/with_autologon'), fCheckSessionStatus = True); 387 382 388 383 #
Note:
See TracChangeset
for help on using the changeset viewer.