notmuch/performance-test/T02-tag.sh
David Bremner 0eab376658 perf-test: rename time tests to have .sh suffix
This will simplify notmuch time tests
2013-05-15 22:23:29 -03:00

14 lines
312 B
Bash
Executable file

#!/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