Changeset 79912 in vbox
- Timestamp:
- Jul 21, 2019 3:41:29 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r79911 r79912 1453 1453 if sRetName == '': 1454 1454 # Create a new host-only interface. 1455 reporter.log("Creating host only NIC ..."); 1455 1456 try: 1456 (oI HostOnly, oIProgress) = self.oVBox.host.createHostOnlyNetworkInterface();1457 oProgress = ProgressWrapper(oIProgress, self.oVBoxMgr, self.oTstDrv, 'Create host only interface');1457 (oIProgress, oIHostOnly) = self.oVBox.host.createHostOnlyNetworkInterface(); 1458 oProgress = ProgressWrapper(oIProgress, self.oVBoxMgr, self.oTstDrv, 'Create host only NIC'); 1458 1459 oProgress.wait(); 1459 1460 if oProgress.logResult() is False: … … 1463 1464 reporter.errorXcpt(); 1464 1465 return ''; 1466 reporter.log("Created host only NIC: '%s'" % (sRetName,)); 1465 1467 1466 1468 elif eAttachmentType == vboxcon.NetworkAttachmentType_Internal:
Note:
See TracChangeset
for help on using the changeset viewer.