Author: rhuijben
Date: Wed May 30 10:07:00 2012
New Revision: 1344178

URL: http://svn.apache.org/viewvc?rev=1344178&view=rev
Log:
* win-tests.py
  (_create_users_file): Use plain text password for running the tests. This
    removes an awfull lot of unneeded MD5 processing from running the dav
    testsuite on Windows for just comparing these two passwords inside httpd.

Modified:
    subversion/trunk/win-tests.py

Modified: subversion/trunk/win-tests.py
URL: 
http://svn.apache.org/viewvc/subversion/trunk/win-tests.py?rev=1344178&r1=1344177&r2=1344178&view=diff
==============================================================================
--- subversion/trunk/win-tests.py (original)
+++ subversion/trunk/win-tests.py Wed May 30 10:07:00 2012
@@ -562,9 +562,9 @@ class Httpd:
   def _create_users_file(self):
     "Create users file"
     htpasswd = os.path.join(self.httpd_dir, 'bin', 'htpasswd.exe')
-    os.spawnv(os.P_WAIT, htpasswd, ['htpasswd.exe', '-mbc', self.httpd_users,
+    os.spawnv(os.P_WAIT, htpasswd, ['htpasswd.exe', '-mbcp', self.httpd_users,
                                     'jrandom', 'rayjandom'])
-    os.spawnv(os.P_WAIT, htpasswd, ['htpasswd.exe', '-mb',  self.httpd_users,
+    os.spawnv(os.P_WAIT, htpasswd, ['htpasswd.exe', '-mbp',  self.httpd_users,
                                     'jconstant', 'rayjandom'])
 
   def _create_mime_types_file(self):


Reply via email to