]> git.notmuchmail.org Git - notmuch/blob - performance-test/T02-tag.sh
perf-test: use $(dirname "$0") for sourcing perf-test-lib.sh
[notmuch] / performance-test / T02-tag.sh
1 #!/bin/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