mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
24 lines
463 B
Bash
24 lines
463 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
test_description='notmuch-git'
|
||
|
|
||
|
. $(dirname "$0")/perf-test-lib.sh || exit 1
|
||
|
|
||
|
time_start
|
||
|
|
||
|
time_run 'init' "notmuch git init"
|
||
|
|
||
|
time_run 'commit --force' "notmuch git commit --force"
|
||
|
time_run 'commit' "notmuch git -l error commit"
|
||
|
time_run 'commit' "notmuch git -l error commit"
|
||
|
|
||
|
time_run 'checkout' "notmuch git checkout"
|
||
|
|
||
|
time_run 'tag -inbox' "notmuch tag -inbox '*'"
|
||
|
|
||
|
time_run 'checkout --force' "notmuch git checkout --force"
|
||
|
|
||
|
|
||
|
|
||
|
time_done
|