This is an automated email from the ASF dual-hosted git repository.
davisp pushed a commit to branch jenkins-pre-pse-daemon-test
in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 721c817be12e4e7bcd51c54363475e6cd65bb897
Author: Paul J. Davis <paul.joseph.davis@gmail.com>
AuthorDate: Wed Feb 28 12:59:09 2018 -0600
TMP - Now with more debug!
---
src/couch/test/couchdb_compaction_daemon_tests.erl | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/couch/test/couchdb_compaction_daemon_tests.erl b/src/couch/test/couchdb_compaction_daemon_tests.erl
index aaee047..eda8772 100644
--- a/src/couch/test/couchdb_compaction_daemon_tests.erl
+++ b/src/couch/test/couchdb_compaction_daemon_tests.erl
@@ -73,6 +73,8 @@ compaction_daemon_test_() ->
should_compact_by_default_rule(DbName) ->
{timeout, ?TIMEOUT_S, ?_test(begin
+ couch_log:error("XKCD: I AM TEST!", []),
+
CompactionMonitor = spawn_compaction_monitor(DbName),
{_, DbFileSize} = get_db_frag(DbName),
@@ -93,6 +95,8 @@ should_compact_by_default_rule(DbName) ->
{DbFrag2, DbFileSize2} = get_db_frag(DbName),
{ViewFrag2, ViewFileSize2} = get_view_frag(DbName),
+ couch_log:error("XKCD: ~p ~p ~p", [DbFileSize, DbFileSize2, DbFrag2]),
+
?assert(DbFrag2 < 70),
?assert(ViewFrag2 < 70),
--
To stop receiving notification emails like this one, please contact
davisp@apache.org.
|