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 2014/05/07 13:50:44 UTC

svn commit: r1592979 - /subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c

Author: rhuijben
Date: Wed May  7 11:50:43 2014
New Revision: 1592979

URL: http://svn.apache.org/r1592979
Log:
* subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c
  (recursive_locking): Return failed instead of skipped.
  (test_funcs): Apply ugly hack to mark the test XFail on Windows.

Modified:
    subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c

Modified: subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c?rev=1592979&r1=1592978&r2=1592979&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c Wed May  7 11:50:43 2014
@@ -1160,7 +1160,7 @@ recursive_locking(const svn_test_opts_t 
   /* ### This test deadlocks on Windows because the mutex code it tries to
      ### test is not used. This mutex is not needed as the locking is per
      ### handle on Windows, not per process */
-  return svn_error_create(SVN_ERR_TEST_SKIPPED, NULL, NULL);
+  return svn_error_create(SVN_ERR_TEST_FAILED, NULL, NULL);
 #endif
 
   SVN_ERR(svn_test__create_fs(&fs, REPO_NAME, opts, pool));
@@ -1208,8 +1208,13 @@ static struct svn_test_descriptor_t test
                        "upgrade txns to log addressing in shared FSFS"),
     SVN_TEST_OPTS_PASS(upgrade_old_txns_to_log_addressing,
                        "upgrade txns started before svnadmin upgrade"),
+#ifdef WIN32
+    SVN_TEST_OPTS_XFAIL(recursive_locking,
+                       "prevent recursive locking"),
+#else
     SVN_TEST_OPTS_PASS(recursive_locking,
                        "prevent recursive locking"),
+#endif
     SVN_TEST_NULL
   };