mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
02a2eeb427
The files (test) scripts source (with builtin command `.`) provides information which the scripts depend, and without the `source` to succeed allowing script to continue may lead to dangerous situations (e.g. rm -rf "${undefined_variable}"/*). At the end of all source (.) lines construct ' || exit 1' was added; In our case the script script will exit if it cannot find (or read) the file to be sourced. Additionally script would also exits if the last command of the sourced file exited nonzero.
15 lines
279 B
Bash
Executable file
15 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
test_description='notmuch new'
|
|
|
|
. ./perf-test-lib.sh || exit 1
|
|
|
|
# ensure initial 'notmuch new' is run by memory_start
|
|
uncache_database
|
|
|
|
memory_start
|
|
|
|
# run 'notmuch new' a second time, to test different code paths
|
|
memory_run "notmuch new" "notmuch new"
|
|
|
|
memory_done
|