[Python-checkins] python/dist/src/Lib/test test_posixpath.py,1.9,1.9.4.1

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Thu, 31 Jul 2003 12:36:05 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv22670

Modified Files:
      Tag: release23-branch
	test_posixpath.py 
Log Message:
Skip test_ismount on MacOS9. Fixes #776207.

Index: test_posixpath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_posixpath.py,v
retrieving revision 1.9
retrieving revision 1.9.4.1
diff -C2 -d -r1.9 -r1.9.4.1
*** test_posixpath.py	1 Jul 2003 03:33:31 -0000	1.9
--- test_posixpath.py	31 Jul 2003 19:36:03 -0000	1.9.4.1
***************
*** 327,330 ****
--- 327,332 ----
  
      def test_ismount(self):
+         if os.name in ('mac',):
+             return
          self.assertIs(posixpath.ismount("/"), True)