This is an automated email from the ASF dual-hosted git repository. davisp pushed a commit to branch compactor-rewrite in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit c8025651da0e2183c5ff069bf36ea9ca01ee9c98 Author: Paul J. Davis <[email protected]> AuthorDate: Wed Aug 16 14:38:11 2017 -0500 Add a test suite for compactions --- src/couch/test/couch_db_updater_tests.erl | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/couch/test/couch_db_updater_tests.erl b/src/couch/test/couch_db_updater_tests.erl new file mode 100644 index 0000000..5dd5e54 --- /dev/null +++ b/src/couch/test/couch_db_updater_tests.erl @@ -0,0 +1,25 @@ +% Licensed under the Apache License, Version 2.0 (the "License"); you may not +% use this file except in compliance with the License. You may obtain a copy of +% the License at +% +% http://www.apache.org/licenses/LICENSE-2.0 +% +% Unless required by applicable law or agreed to in writing, software +% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +% License for the specific language governing permissions and limitations under +% the License. + +-module(couch_db_updater_tests). + +-include_lib("couch/include/couch_eunit.hrl"). + +% Tests to test +% 10k docs +% kill during first pass +% kill during docid copy +% kill before docid copy starts +% kill during docid copy +% kill after docid copy +% 5k docs, write docs during compaction +% \ No newline at end of file -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
