mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
0eab376658
This will simplify notmuch time tests
15 lines
182 B
Bash
Executable file
15 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
|
|
test_description='notmuch new'
|
|
|
|
. ./perf-test-lib.sh
|
|
|
|
uncache_database
|
|
|
|
time_start
|
|
|
|
for i in $(seq 2 6); do
|
|
time_run "notmuch new #$i" 'notmuch new'
|
|
done
|
|
|
|
time_done
|