]> git.notmuchmail.org Git - notmuch/blob - test/notmuch-test
uncrustify.cfg: label indent, some known types, not, # and ##
[notmuch] / test / notmuch-test
1 #!/usr/bin/env bash
2
3 # Run tests
4 #
5 # Copyright (c) 2005 Junio C Hamano
6 #
7 # Adapted from a Makefile to a shell script by Carl Worth (2010)
8
9 if [ ${BASH_VERSINFO[0]} -lt 4 ]; then
10     echo "Error: The notmuch test suite requires a bash version >= 4.0"
11     echo "due to use of associative arrays within the test suite."
12     echo "Please try again with a newer bash (or help us fix the"
13     echo "test suite to be more portable). Thanks."
14     exit 1
15 fi
16
17 cd $(dirname "$0")
18
19 TESTS="
20   basic
21   help-test
22   new
23   count
24   search
25   search-output
26   search-by-folder
27   search-position-overlap-bug
28   search-insufficient-from-quoting
29   search-limiting
30   tagging
31   json
32   multipart
33   thread-naming
34   raw
35   reply
36   reply-to-sender
37   dump-restore
38   uuencode
39   thread-order
40   author-order
41   from-guessing
42   long-id
43   encoding
44   emacs
45   emacs-large-search-buffer
46   emacs-subject-to-filename
47   maildir-sync
48   crypto
49   symbol-hiding
50   search-folder-coherence
51   atomicity
52   python
53   hooks
54   argument-parsing
55   emacs-test-functions.sh
56   emacs-address-cleaning.sh
57 "
58 TESTS=${NOTMUCH_TESTS:=$TESTS}
59
60 # Clean up any results from a previous run
61 rm -r test-results >/dev/null 2>/dev/null
62
63 # test for timeout utility
64 if command -v timeout >/dev/null; then
65     TEST_TIMEOUT_CMD="timeout 2m "
66     echo "INFO: using 2 minute timeout for tests"
67 else
68     TEST_TIMEOUT_CMD=""
69 fi
70
71 trap 'e=$?; kill $!; exit $e' HUP INT TERM
72 # Run the tests
73 for test in $TESTS; do
74     $TEST_TIMEOUT_CMD ./$test "$@" &
75     wait $!
76 done
77 trap - HUP INT TERM
78
79 # Report results
80 ./aggregate-results.sh test-results/*
81
82 # Clean up
83 rm -rf test-results corpus.mail