diff options
| author | David Bremner <david@tethera.net> | 2023-04-09 11:26:23 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2023-07-21 06:58:16 -0300 |
| commit | dfa43a19218ed46f677034ab7bf8b8907a327935 (patch) | |
| tree | b930d74b25e0c0c42977784af638a806707aaf7d /test/T240-dump-restore.sh | |
| parent | e9ff896f8491e8780fcf7322436fc0c0575fe8f9 (diff) | |
test: treat undefined feature variables as 0
When running the test suite without building first, it is desirable to
have the tests consider these variables being undefined as equivalent
to the feature not being present, and in particular for the tests not
to generate errors.
Diffstat (limited to 'test/T240-dump-restore.sh')
| -rwxr-xr-x | test/T240-dump-restore.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/T240-dump-restore.sh b/test/T240-dump-restore.sh index a86f0fb7..80939030 100755 --- a/test/T240-dump-restore.sh +++ b/test/T240-dump-restore.sh @@ -118,7 +118,7 @@ notmuch dump -- from:cworth > dump-dash-cworth.actual test_expect_equal_file dump-cworth.expected dump-dash-cworth.actual -if [ $NOTMUCH_HAVE_SFSEXP -eq 1 ]; then +if [ "${NOTMUCH_HAVE_SFSEXP-0}" = "1" ]; then test_begin_subtest "dump --query=sexp -- '(from cworth)'" notmuch dump --query=sexp -- '(from cworth)' > dump-dash-cworth.actual2 |
