Changeset 62025 in vbox for trunk/src/VBox/ValidationKit/tests/unittests
- Timestamp:
- Jul 5, 2016 1:50:26 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108487
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r61840 r62025 36 36 import re 37 37 import subprocess 38 import shutil39 38 40 39 … … 515 514 reporter.log('_hardenedCopyFile: %s -> %s (mode: %o)' % (sSrc, sDst, iMode,)); 516 515 if utils.getHostOs() in [ 'win', 'os2' ]: 517 shutil.copyfile(sSrc, sDst);516 utils.copyFileSimple(sSrc, sDst); 518 517 os.chmod(sDst, iMode); 519 518 else:
Note:
See TracChangeset
for help on using the changeset viewer.