Author: breser
Date: Tue May 27 21:57:07 2014
New Revision: 1597885

URL: http://svn.apache.org/r1597885
Log:
swig-rb: Move the config path into a temp directory rather.

Previous code assumed that config in the current working directory could be
deleted and remade.  It worked fine but it's really not right.

* subversion/bindings/swig/ruby/test/util.rb:
  (SVNTestUtil.setup_default_variables): config_path should be in the temp path.

Modified:
    subversion/trunk/subversion/bindings/swig/ruby/test/util.rb

Modified: subversion/trunk/subversion/bindings/swig/ruby/test/util.rb
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/ruby/test/util.rb?rev=1597885&r1=1597884&r2=1597885&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/ruby/test/util.rb (original)
+++ subversion/trunk/subversion/bindings/swig/ruby/test/util.rb Tue May 27 
21:57:07 2014
@@ -83,7 +83,7 @@ module SvnTestUtil
     @full_repos_path = File.expand_path(@repos_path)
     @repos_uri = "file://#{@full_repos_path.sub(/^\/?/, '/')}"
 
-    @config_path = "config"
+    @config_path = File.join(@tmp_path, "config")
     @greek = Greek.new(@tmp_path, @import_path, @wc_path, @repos_uri)
   end
 


Reply via email to