notmuch/performance-test/T02-tag.sh

15 lines
344 B
Bash
Raw Normal View History

#!/usr/bin/env bash
test_description='tagging'
. $(dirname "$0")/perf-test-lib.sh || exit 1
time_start
time_run 'tag * +new_tag' "notmuch tag +new_tag '*'"
time_run 'tag * +existing_tag' "notmuch tag +new_tag '*'"
time_run 'tag * -existing_tag' "notmuch tag -new_tag '*'"
time_run 'tag * -missing_tag' "notmuch tag -new_tag '*'"
time_done