[Jython-checkins] jython: Remove test of symbolic links on Windows (os.symlink not available).

jeff.allen jython-checkins at python.org
Sun Mar 2 21:24:45 CET 2014


http://hg.python.org/jython/rev/586159611003
changeset:   7189:586159611003
user:        Jeff Allen <ja.py at farowl.co.uk>
date:        Thu Feb 27 08:41:36 2014 +0000
summary:
  Remove test of symbolic links on Windows (os.symlink not available).

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


diff --git a/Lib/test/test_chdir.py b/Lib/test/test_chdir.py
--- a/Lib/test/test_chdir.py
+++ b/Lib/test/test_chdir.py
@@ -715,6 +715,8 @@
              SymlinkTestCase]
     if WINDOWS:
         tests.append(WindowsChdirTestCase)
+        tests.remove(SymlinkTestCase)       #  os.symlink ... Availability: Unix.
+
     if test_support.is_jython:
         tests.extend((ImportJavaClassTestCase,
                       ImportJarTestCase))

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


More information about the Jython-checkins mailing list