Changeset 71534 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Mar 28, 2018 10:50:00 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r71532 r71534 3113 3113 if oTestVm.isWindows(): 3114 3114 sUser = "Administrator"; 3115 sScratch = "C:\\Temp\\vboxtest\\testGuestCtrlCopyTo\\"; 3115 3116 else: 3116 3117 sUser = "vbox"; 3117 3118 sPassword = "password"; 3118 3119 if oTestVm.isWindows():3120 sScratch = "C:\\Temp\\vboxtest\\testGuestCtrlCopyTo\\";3121 3119 3122 3120 if oTxsSession.syncMkDir('${SCRATCH}/testGuestCtrlCopyTo') is False: … … 3196 3194 3197 3195 if self.oTstDrv.fpApiVer > 5.2: # Copying directories via Main is supported only in versions > 5.2. 3198 aaTests.extend([ 3199 # Copying directories with contain files we don't have read access to. 3200 [ tdTestCopyTo(sUser = sUser, sPassword = sPassword, sSrc = 'C:\\Windows\\security', 3201 sDst = sScratch), 3202 tdTestResult(fRc = False) ], 3203 # Copying directories with regular files. 3204 [ tdTestCopyTo(sUser = sUser, sPassword = sPassword, sSrc = 'C:\\Windows\\Help', 3205 sDst = sScratch), 3206 tdTestResult(fRc = True) ] 3207 ]); 3196 if self.oTstDrv.sHost == "win": 3197 aaTests.extend([ 3198 # Copying directories with contain files we don't have read access to. 3199 [ tdTestCopyTo(sUser = sUser, sPassword = sPassword, sSrc = 'C:\\Windows\\security', 3200 sDst = sScratch), 3201 tdTestResult(fRc = False) ], 3202 # Copying directories with regular files. 3203 [ tdTestCopyTo(sUser = sUser, sPassword = sPassword, sSrc = 'C:\\Windows\\Help', 3204 sDst = sScratch), 3205 tdTestResult(fRc = True) ] 3206 ]); 3208 3207 else: 3209 3208 reporter.log('No OS-specific tests for non-Windows yet!');
Note:
See TracChangeset
for help on using the changeset viewer.