You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2011/04/21 03:02:18 UTC

svn commit: r1095581 - /couchdb/trunk/test/etap/test_util.erl.in

Author: davisp
Date: Thu Apr 21 01:02:18 2011
New Revision: 1095581

URL: http://svn.apache.org/viewvc?rev=1095581&view=rev
Log:
Make local_dev.ini the last file in the config chain.

Having random_port.ini last in the chain causes etap tests
to fail because its in the tarball section which is readonly
in a VPATH build.


Modified:
    couchdb/trunk/test/etap/test_util.erl.in

Modified: couchdb/trunk/test/etap/test_util.erl.in
URL: http://svn.apache.org/viewvc/couchdb/trunk/test/etap/test_util.erl.in?rev=1095581&r1=1095580&r2=1095581&view=diff
==============================================================================
--- couchdb/trunk/test/etap/test_util.erl.in (original)
+++ couchdb/trunk/test/etap/test_util.erl.in Thu Apr 21 01:02:18 2011
@@ -36,6 +36,6 @@ build_file(Name) ->
 config_files() ->
     [
         build_file("etc/couchdb/default_dev.ini"),
-        build_file("etc/couchdb/local_dev.ini"),
-        source_file("test/etap/random_port.ini")
+        source_file("test/etap/random_port.ini"),
+        build_file("etc/couchdb/local_dev.ini")
     ].