]> git.notmuchmail.org Git - notmuch/blob - T02-tag.sh
9c895d6a910145266dde528039a61caabcc8fa70
[notmuch] / T02-tag.sh
1 #!/usr/bin/env bash
2
3 test_description='tagging'
4
5 . $(dirname "$0")/perf-test-lib.sh || exit 1
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