Author: stefan2
Date: Sat Nov 23 01:07:51 2013
New Revision: 1544727
URL: http://svn.apache.org/r1544727
Log:
Minimize the time spent in the locks timeout test by using tighter timings.
* subversion/tests/libsvn_fs/locks-test.c
(lock_expiration): expire after 2 secs; wait for 3
Modified:
subversion/trunk/subversion/tests/libsvn_fs/locks-test.c
Modified: subversion/trunk/subversion/tests/libsvn_fs/locks-test.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_fs/locks-test.c?rev=1544727&r1=1544726&r2=1544727&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_fs/locks-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_fs/locks-test.c Sat Nov 23
01:07:51 2013
@@ -608,9 +608,9 @@ lock_expiration(const svn_test_opts_t *o
SVN_ERR(svn_fs_create_access(&access, "bubba", pool));
SVN_ERR(svn_fs_set_access(fs, access));
- /* Lock /A/D/G/rho, with an expiration 3 seconds from now. */
+ /* Lock /A/D/G/rho, with an expiration 2 seconds from now. */
SVN_ERR(svn_fs_lock(&mylock, fs, "/A/D/G/rho", NULL, "", 0,
- apr_time_now() + apr_time_from_sec(3),
+ apr_time_now() + apr_time_from_sec(2),
SVN_INVALID_REVNUM, FALSE, pool));
/* Become nobody. */
@@ -640,9 +640,9 @@ lock_expiration(const svn_test_opts_t *o
num_expected_paths, pool));
}
- /* Sleep 5 seconds, so the lock auto-expires. Anonymous commit
+ /* Sleep 2 seconds, so the lock auto-expires. Anonymous commit
should then succeed. */
- apr_sleep(apr_time_from_sec(5));
+ apr_sleep(apr_time_from_sec(3));
/* Verify that the lock auto-expired even in the recursive case. */
{