You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/11/12 13:41:50 UTC

svn commit: r1034379 - /subversion/trunk/subversion/tests/cmdline/patch_tests.py

Author: rhuijben
Date: Fri Nov 12 12:41:50 2010
New Revision: 1034379

URL: http://svn.apache.org/viewvc?rev=1034379&view=rev
Log:
* subversion/tests/cmdline/patch_tests.py
  (test_list): Skip patch_add_symlink on non-posix operating systems, like
    we do with other symlink tests.

Modified:
    subversion/trunk/subversion/tests/cmdline/patch_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/patch_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/patch_tests.py?rev=1034379&r1=1034378&r2=1034379&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/patch_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/patch_tests.py Fri Nov 12 12:41:50 2010
@@ -3508,7 +3508,7 @@ test_list = [ None,
               patch_reverse_revert,
               patch_strip_cwd,
               XFail(patch_set_prop_no_eol),
-              patch_add_symlink,
+              SkipUnless(patch_add_symlink, svntest.main.is_posix_os),
             ]
 
 if __name__ == '__main__':