]> git.notmuchmail.org Git - notmuch/blob - performance-test/02-tag
perf-test: remove redundant "initial notmuch new"
[notmuch] / performance-test / 02-tag
1 #!/bin/bash
2
3 test_description='tagging'
4
5 . ./perf-test-lib.sh
6
7 time_start
8
9 time_run 'tag * +new_tag' "notmuch tag +new_tag '*'"
10 time_run 'tag * +existing_tag' "notmuch tag +new_tag '*'"
11 time_run 'tag * -existing_tag' "notmuch tag -new_tag '*'"
12 time_run 'tag * -missing_tag' "notmuch tag -new_tag '*'"
13
14 time_done