Changeset 70857 in vbox for trunk/src/VBox/ValidationKit/tests/api/tdMoveMedium1.py
- Timestamp:
- Feb 2, 2018 10:31:45 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdMoveMedium1.py
r70855 r70857 90 90 sFilePath = os.path.join(sLocation, asFiles[oAttachment.port]) 91 91 sActualFilePath = oAttachment.medium.location 92 if not os.path.samefile(sFilePath, sActualFilePath): 92 # @todo os.path.samefile() is not available on Windows in python 2.x 93 if sys.platform != 'win32' \ 94 and not os.path.samefile(sFilePath, sActualFilePath): 93 95 reporter.log('medium location expected to be "%s" but is "%s"' % (sFilePath, sActualFilePath)) 94 96 fRc = False;
Note:
See TracChangeset
for help on using the changeset viewer.