[Jython-checkins] jython: Add skips.

frank.wierzbicki jython-checkins at python.org
Thu Jun 28 19:37:41 CEST 2012


http://hg.python.org/jython/rev/700c13766fe7
changeset:   6768:700c13766fe7
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Wed Jun 27 19:49:51 2012 -0700
summary:
  Add skips.

files:
  Lib/test/test_posix.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -365,6 +365,7 @@
         finally:
             posix.lchflags(_DUMMY_SYMLINK, dummy_symlink_st.st_flags)
 
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_getcwd_long_pathnames(self):
         if hasattr(posix, 'getcwd'):
             dirname = 'getcwd-test-directory-0123456789abcdef-01234567890abcdef'
@@ -408,6 +409,7 @@
                 os.chdir(curdir)
                 shutil.rmtree(base_path)
 
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     @unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()")
     def test_getgroups(self):
         with os.popen('id -G') as idg:

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list