Changeset 97673 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Nov 24, 2022 11:46:15 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154728
- Location:
- trunk/src/VBox/ValidationKit/tests/additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r97593 r97673 152 152 % (uuid.uuid4(), self.sVBoxValidationKitIso, sGaIso); 153 153 reporter.log2('Using VISO combining ValKit and GAs "%s": %s' % (sVisoContent, sGaViso)); 154 with open(sGaViso, 'w') as oGaViso: 154 with open(sGaViso, 'w') as oGaViso: # pylint: disable=unspecified-encoding 155 155 oGaViso.write(sVisoContent); 156 156 sGaIso = sGaViso; -
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r97604 r97673 3353 3353 args = (oGuestProcess,), 3354 3354 name = ('threadForTestGuestCtrlSessionReboot')); 3355 oThreadReboot.setDaemon(True); 3355 oThreadReboot.setDaemon(True); # pylint: disable=deprecated-method 3356 3356 oThreadReboot.start(); 3357 3357 … … 4312 4312 oFile.setSize(64); 4313 4313 fUseFallback = False; 4314 except Exception as oXcpt:4314 except: 4315 4315 reporter.logXcpt(); 4316 4316 … … 4323 4323 try: 4324 4324 oFile.setSize(cbBigFile); 4325 except Exception as oXcpt:4325 except Exception: 4326 4326 reporter.logXcpt('cbBigFile=%s' % (sBigPath,)); 4327 4327 try:
Note:
See TracChangeset
for help on using the changeset viewer.