Changeset 94898 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- May 6, 2022 1:09:27 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r94528 r94898 966 966 asDirsToRemove.append(sDstDir); 967 967 968 sSrc = sFullPath + self.sExeSuff; 969 # If the testcase source does not exist for whatever reason, just mark it as skipped 970 # instead of reporting an error. 971 if not self._wrapPathExists(sSrc): 972 fSkipped = True; 973 return fSkipped; 974 968 975 sDst = os.path.join(sDstDir, os.path.basename(sFullPath) + self.sExeSuff); 969 self._wrapCopyFile(s FullPath + self.sExeSuff, sDst, 0o755);976 self._wrapCopyFile(sSrc, sDst, 0o755); 970 977 asFilesToRemove.append(sDst); 971 978
Note:
See TracChangeset
for help on using the changeset viewer.