Changeset 70858 in vbox for trunk/src/VBox/ValidationKit/tests/api
- Timestamp:
- Feb 5, 2018 9:43:30 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/api/tdMoveMedium1.py
r70857 r70858 90 90 sFilePath = os.path.join(sLocation, asFiles[oAttachment.port]) 91 91 sActualFilePath = oAttachment.medium.location 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): 92 if os.path.abspath(sFilePath) != os.path.abspath(sActualFilePath): 95 93 reporter.log('medium location expected to be "%s" but is "%s"' % (sFilePath, sActualFilePath)) 96 94 fRc = False;
Note:
See TracChangeset
for help on using the changeset viewer.