Author: rhuijben
Date: Wed Feb 22 21:39:05 2012
New Revision: 1292526
URL: http://svn.apache.org/viewvc?rev=1292526&view=rev
Log:
* subversion/bindings/swig/perl/native/t/3client.t
Convert more paths to our internal style before using them in the tests.
Modified:
subversion/trunk/subversion/bindings/swig/perl/native/t/3client.t
Modified: subversion/trunk/subversion/bindings/swig/perl/native/t/3client.t
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/perl/native/t/3client.t?rev=1292526&r1=1292525&r2=1292526&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/perl/native/t/3client.t (original)
+++ subversion/trunk/subversion/bindings/swig/perl/native/t/3client.t Wed Feb
22 21:39:05 2012
@@ -46,7 +46,10 @@ my $reposurl = 'file://' . (substr($repo
my $wcpath = catdir($testpath,'wc');
my $importpath = catdir($testpath,'import');
+# Use internal style paths on Windows
$reposurl =~ s/\\/\//g;
+$wcpath =~ s/\\/\//g;
+$importpath =~ s/\\/\//g;
# track current rev ourselves to test against
my $current_rev = 0;