Changeset 97537 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Nov 14, 2022 6:11:04 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r97440 r97537 1786 1786 oFile = open(sDst, 'rb'); # pylint: disable=consider-using-with 1787 1787 except: 1788 return reporter.errorXcpt('open(%s) failed during verfication' % (sDst,)); 1788 # Don't report expected non-existing paths / files as an error. 1789 return reporter.maybeErrXcpt(fExpected, 'open(%s) failed during verfication (file / path not found)' % (sDst,)); 1789 1790 fEqual = oTest.oSrc.equalFile(oFile); 1790 1791 oFile.close();
Note:
See TracChangeset
for help on using the changeset viewer.