notmuch/performance-test/T02-tag.sh

15 lines
312 B
Bash
Raw Normal View History

#!/bin/bash
test_description='tagging'
. ./perf-test-lib.sh
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