mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
3bd8494da0
There are currently 45 TESTS scripts. 36 of those load test-lib.sh using '. ./test-lib.sh' and 9 '. test-lib.sh'. In latter case test-lib.sh is first searched from directories in PATH (posix) and then from current directory (bash feature). Changed the 9 files to execute '. ./test-lib.sh'. The test-lib.sh should never be loaded from directory in PATH.
9 lines
167 B
Bash
Executable file
9 lines
167 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test_description="emacs test function sanity"
|
|
. ./test-lib.sh
|
|
|
|
test_begin_subtest "emacs test function sanity"
|
|
test_emacs_expect_t 't'
|
|
|
|
test_done
|