Changeset 84669 in vbox
- Timestamp:
- Jun 3, 2020 5:20:53 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138426
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r84657 r84669 3339 3339 [ tdTestDirCreate(sDirectory = '/..' ), tdTestResultFailure() ], 3340 3340 [ tdTestDirCreate(sDirectory = '/../' ), tdTestResultFailure() ], 3341 # Format strings. Dangerous.3342 [ tdTestDirCreate(sDirectory = 'foo%sbar%sbaz%d' ), tdTestResultFailure() ],3343 [ tdTestDirCreate(sDirectory = '%f%%boo%%bar%RI32' ), tdTestResultFailure() ],3344 3341 ]; 3345 3342 if oTestVm.isWindows() or oTestVm.isOS2(): … … 3366 3363 [ tdTestDirCreate(sDirectory = oTestVm.pathJoin(sScratch, 'foo', 'bar', 'baz'), 3367 3364 afFlags = (vboxcon.DirectoryCreateFlag_Parents,) ), tdTestResultSuccess() ], 3365 # Try format strings as directories. 3366 [ tdTestDirCreate(sDirectory = oTestVm.pathJoin(sScratch, 'foo%sbar%sbaz%d' )), tdTestResultSuccess() ], 3367 [ tdTestDirCreate(sDirectory = oTestVm.pathJoin(sScratch, '%f%%boo%%bar%RI32' )), tdTestResultSuccess() ], 3368 3368 # Long random names. 3369 3369 [ tdTestDirCreate(sDirectory = oTestVm.pathJoin(sScratch, self.oTestFiles.generateFilenameEx(36, 28))),
Note:
See TracChangeset
for help on using the changeset viewer.