You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by be...@apache.org on 2014/02/12 06:31:47 UTC

couchdb commit: updated refs/heads/1994-merge-rcouch to 91a104c

Updated Branches:
  refs/heads/1994-merge-rcouch 0bc0f70eb -> 91a104c72


fix tests

tests were crashing in travis afte lager has been added: goldrush and
its dependencies were not started.


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

Branch: refs/heads/1994-merge-rcouch
Commit: 91a104c7221eec0d21dfe1b2c30055879cca457f
Parents: 0bc0f70
Author: Benoit Chesneau <bc...@gmail.com>
Authored: Wed Feb 12 06:29:40 2014 +0100
Committer: Benoit Chesneau <bc...@gmail.com>
Committed: Wed Feb 12 06:29:40 2014 +0100

----------------------------------------------------------------------
 test/etap/171-os-daemons-config.t | 4 ++++
 test/etap/test_util.erl           | 5 +++++
 2 files changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/91a104c7/test/etap/171-os-daemons-config.t
----------------------------------------------------------------------
diff --git a/test/etap/171-os-daemons-config.t b/test/etap/171-os-daemons-config.t
index 8284389..fda539c 100755
--- a/test/etap/171-os-daemons-config.t
+++ b/test/etap/171-os-daemons-config.t
@@ -48,6 +48,10 @@ main(_) ->
 
 test() ->
     couch_config:start_link(config_files()),
+    application:start(syntax_tools),
+    application:start(compiler),
+    application:start(goldrush),
+    application:start(lager),
     couch_config:set("log", "level", "debug", false),
     couch_log:start_link(),
     couch_os_daemons:start_link(),

http://git-wip-us.apache.org/repos/asf/couchdb/blob/91a104c7/test/etap/test_util.erl
----------------------------------------------------------------------
diff --git a/test/etap/test_util.erl b/test/etap/test_util.erl
index b50c5f9..9208335 100644
--- a/test/etap/test_util.erl
+++ b/test/etap/test_util.erl
@@ -128,6 +128,11 @@ start_couch() ->
 start_couch(IniFiles) ->
     ok = test_util:init_code_path(),
 
+    application:start(syntax_tools),
+    application:start(compiler),
+    application:start(goldrush),
+    application:start(lager),
+
     %% disable sasl
     application:load(sasl),
     application:set_env(sasl, errlog_type, error),