From: David Bremner Date: Fri, 18 Aug 2017 23:50:06 +0000 (-0300) Subject: perf-test: add memory test for notmuch-insert X-Git-Tag: 0.26_rc0~187 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=49d4f52f270773f86c90eb1c50805d1d7429d39b perf-test: add memory test for notmuch-insert In the future it might be worthwhile selecting corpus messages to insert, but that seems a bit overcomplicated for now --- diff --git a/performance-test/M06-insert.sh b/performance-test/M06-insert.sh new file mode 100755 index 00000000..9fcc2a0c --- /dev/null +++ b/performance-test/M06-insert.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +test_description='search' + +. ./perf-test-lib.sh || exit 1 + +memory_start + +mkdir -p "$MAIL_DIR"/{cur,new,tmp} + +for count in {1..20}; do + generate_message "[file]=\"insert-$count\"" "[dir]='tmp/'" + memory_run "insert $count" "notmuch insert < $gen_msg_filename" +done + +memory_done