You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2014/04/08 12:39:18 UTC

svn commit: r1585681 - /subversion/trunk/subversion/tests/cmdline/svntest/main.py

Author: stsp
Date: Tue Apr  8 10:39:17 2014
New Revision: 1585681

URL: http://svn.apache.org/r1585681
Log:
* subversion/tests/cmdline/svntest/main.py
  (TestSpawningThread): Pass the --memcached-server option correctly.

Modified:
    subversion/trunk/subversion/tests/cmdline/svntest/main.py

Modified: subversion/trunk/subversion/tests/cmdline/svntest/main.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/main.py?rev=1585681&r1=1585680&r2=1585681&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/main.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/main.py Tue Apr  8 10:39:17 2014
@@ -1486,7 +1486,7 @@ class TestSpawningThread(threading.Threa
     if options.exclusive_wc_locks:
       args.append('--exclusive-wc-locks')
     if options.memcached_server:
-      args.append('--memcached-server' + options.memcached_server)
+      args.append('--memcached-server=' + options.memcached_server)
 
     result, stdout_lines, stderr_lines = spawn_process(command, 0, False, None,
                                                        *args)