This is an automated email from the ASF dual-hosted git repository. jan pushed a commit to branch fix/1233/attachment-test-timeouts in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit a8670da0bc5004a8b601faabd3617dd6527d9a2d Author: Jan Lehnardt <[email protected]> AuthorDate: Sat Jul 14 12:54:47 2018 +0200 raise timeouts in attachment tests --- src/couch/test/couchdb_attachments_tests.erl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/couch/test/couchdb_attachments_tests.erl b/src/couch/test/couchdb_attachments_tests.erl index d9efac5..a85a01f 100644 --- a/src/couch/test/couchdb_attachments_tests.erl +++ b/src/couch/test/couchdb_attachments_tests.erl @@ -21,9 +21,9 @@ -define(ATT_TXT_NAME, <<"file.erl">>). -define(FIXTURE_PNG, filename:join([?FIXTURESDIR, "logo.png"])). -define(FIXTURE_TXT, ?ABS_PATH(?FILE)). --define(TIMEOUT, 1000). --define(TIMEOUT_EUNIT, 10). --define(TIMEWAIT, 100). +-define(TIMEOUT, 5000). +-define(TIMEOUT_EUNIT, 100). +-define(TIMEWAIT, 1000). -define(i2l(I), integer_to_list(I)).
