[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Fix commit_tests.py with cygwin

From: makl <makl_at_tigris.org>
Date: 2004-03-10 20:43:56 CET

[[[
Fix commit_tests.py with cygwin

Patch from makl <makl@tigris.org>

* subversion/tests/clients/cmdline/commit_tests.py
   (commit_uri_unsafe): Remove '<' and '>' as special characters since
   they are not permitted in filenames.
]]]

Index: subversion/tests/clients/cmdline/commit_tests.py
===================================================================
--- subversion/tests/clients/cmdline/commit_tests.py (revision 8965)
+++ subversion/tests/clients/cmdline/commit_tests.py (working copy)
@@ -1070,6 +1070,10 @@
      angle_name = '$angle$'
      nasty_name = '#![]{}()$$%'
      tab_name = 'tab-path'
+ elif sys.platform == 'cygwin':
+ angle_name = 'angle'
+ nasty_name = '#![]{}()%'
+ tab_name = 'tab-path'
    else:
      angle_name = '<angle>'
      nasty_name = '#![]{}()<>%'

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Mar 10 20:42:15 2004

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.