Changeset 70521 in vbox for trunk/src/VBox/ValidationKit/tests/api
- Timestamp:
- Jan 10, 2018 3:49:10 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120149
- Location:
- trunk/src/VBox/ValidationKit/tests/api
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdAppliance1.py
r69445 r70521 175 175 # 176 176 try: 177 os.mkdir(sTmpDir, 0 x1ed); # 0755 = 0x1ed177 os.mkdir(sTmpDir, 0o755); 178 178 oTarFile = tarfile.open(sOva, 'r:*'); 179 179 oTarFile.extractall(sTmpDir); -
trunk/src/VBox/ValidationKit/tests/api/tdMoveMedium.py
r69111 r70521 136 136 sNewLoc = os.path.join(sOrigLoc, 'newLocation/') 137 137 138 os.makedirs(sNewLoc, 0 775);138 os.makedirs(sNewLoc, 0o775); 139 139 140 140 aListOfAttach = oVM.getMediumAttachmentsOfController(sController)
Note:
See TracChangeset
for help on using the changeset viewer.