mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
398b94bb39
Nothing fancy, but we can at least detect segmentation faults.
12 lines
362 B
Bash
Executable file
12 lines
362 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test_description="online help"
|
|
. test-lib.sh
|
|
|
|
test_expect_success 'notmuch --help' 'notmuch --help'
|
|
test_expect_success 'notmuch --help tag' 'notmuch --help tag'
|
|
test_expect_success 'notmuch help' 'notmuch help'
|
|
test_expect_success 'notmuch help tag' 'notmuch help tag'
|
|
test_expect_success 'notmuch --version' 'notmuch --version'
|
|
|
|
test_done
|