Changeset 77552 in vbox for trunk/src/VBox
- Timestamp:
- Mar 4, 2019 10:38:15 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r77551 r77552 101 101 """ 102 102 def __init__(self, sUser = None, sPassword = None, sDomain = None): 103 self.oTestVm = None; 103 104 self.sUser = sUser; 104 105 self.sPassword = sPassword; … … 1921 1922 sImageOut = "/bin/ls"; 1922 1923 1924 # Use credential defaults. 1925 oCreds = tdCtxCreds(); 1926 oCreds.applyDefaultsIfNotSet(oTestVm); 1927 1923 1928 aaInvalid = [ 1924 1929 # Invalid parameters. … … 2091 2096 try: 2092 2097 reporter.log('Creating session for all tests ...'); 2093 curGuestSession = oGuest.createSession(sUser, sPassword, '', 'testGuestCtrlExec: One session for all tests'); 2098 curGuestSession = oGuest.createSession(oCreds.sUser, oCreds.sPassword, oCreds.sDomain, 2099 'testGuestCtrlExec: One session for all tests'); 2094 2100 try: 2095 2101 fWaitFor = [ vboxcon.GuestSessionWaitForFlag_Start ];
Note:
See TracChangeset
for help on using the changeset viewer.