Changeset 62356 in vbox for trunk/src/VBox/ValidationKit/tests/storage
- Timestamp:
- Jul 20, 2016 12:52:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
r62268 r62356 251 251 self.oGuestToGuestSess = None; 252 252 self.oGuestToGuestTxs = None; 253 self.asTestVMsDef = ['tst-storage' ];253 self.asTestVMsDef = ['tst-storage', 'tst-storage32']; 254 254 self.asTestVMs = self.asTestVMsDef; 255 255 self.asSkipVMs = []; … … 376 376 if 'tst-storage' in self.asTestVMs: 377 377 self.asRsrcs.append('5.0/storage/tst-storage.vdi'); 378 if 'tst-storage32' in self.asTestVMs: 379 self.asRsrcs.append('5.0/storage/tst-storage32.vdi'); 378 380 379 381 return self.asRsrcs; … … 392 394 if 'tst-storage' in self.asTestVMs: 393 395 oVM = self.createTestVM('tst-storage', 1, '5.0/storage/tst-storage.vdi', sKind = 'ArchLinux_64', fIoApic = True, \ 396 eNic0AttachType = vboxcon.NetworkAttachmentType_NAT, \ 397 eNic0Type = vboxcon.NetworkAdapterType_Am79C973); 398 if oVM is None: 399 return False; 400 401 if 'tst-storage32' in self.asTestVMs: 402 oVM = self.createTestVM('tst-storage32', 1, '5.0/storage/tst-storage32.vdi', sKind = 'ArchLinux', fIoApic = True, \ 394 403 eNic0AttachType = vboxcon.NetworkAttachmentType_NAT, \ 395 404 eNic0Type = vboxcon.NetworkAdapterType_Am79C973);
Note:
See TracChangeset
for help on using the changeset viewer.