This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: MacOS9: test_posixpath fails
Type: Stage:
Components: macOS Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen
Priority: normal Keywords:

Created on 2003-07-23 12:08 by jackjansen, last changed 2022-04-10 16:10 by admin. This issue is now closed.

Messages (2)
msg17302 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2003-07-23 12:08
test_posixpath fails on MacPython-OS9:

test test_posixpath failed -- Traceback (most recent call 
last):
  File 
"Sap:ufs:jack:SWDev:MacPython:Lib:test:test_posixpath.py"
, line 329, in test_ismount
    self.assertIs(posixpath.ismount("/"), True)
  File 
"Sap:ufs:jack:SWDev:MacPython:Lib:test:test_posixpath.py"
, line 9, in assertIs
    self.assert_(a is b)
  File "Sap:ufs:jack:SWDev:MacPython:Lib:unittest.py", line 
268, in failUnless
    if not expr: raise self.failureException, msg
AssertionError

I am unsure about the fix, because I don't know what the 
intention of posixpath.ismount() is on a non-posix system. 
msg17303 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2003-07-31 19:36
Logged In: YES 
user_id=45365

Fixed by skipping the test, which is useless on MacOS9 anyway.
History
Date User Action Args
2022-04-10 16:10:10adminsetgithub: 38917
2003-07-23 12:08:14jackjansencreate