You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/11/11 23:50:19 UTC

[03/16] couchdb commit: updated refs/heads/2876-js-tests to 805a427

test/javascript/run: allow configuration of target URL with couchdb.uri file


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/4a55fabc
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/4a55fabc
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/4a55fabc

Branch: refs/heads/2876-js-tests
Commit: 4a55fabc0575a8114f15f76fa936a908bf5c58d4
Parents: 6a03c31
Author: Jan Lehnardt <ja...@apache.org>
Authored: Thu Jun 25 22:29:23 2015 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Oct 5 20:51:14 2015 +0200

----------------------------------------------------------------------
 test/javascript/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/4a55fabc/test/javascript/run
----------------------------------------------------------------------
diff --git a/test/javascript/run b/test/javascript/run
index 4c71204..806b7e7 100755
--- a/test/javascript/run
+++ b/test/javascript/run
@@ -71,7 +71,7 @@ def mkformatter(tests):
 
 def run_couchjs(test, fmt):
     fmt(test)
-    cmd = [COUCHJS, "-H"] + SCRIPTS + [test, RUNNER]
+    cmd = [COUCHJS, "-H"] + ["-u", "test/javascript/couchdb.uri"] + SCRIPTS + [test, RUNNER]
     p = sp.Popen(
         cmd,
         stdin=sp.PIPE,