]> git.notmuchmail.org Git - notmuch/blob - test/notmuch-test
e14d34e424705851951aad5c4c650ab555ace7fc
[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
56   emacs-address-cleaning
57   emacs-show
58 "
59 TESTS=${NOTMUCH_TESTS:=$TESTS}
60
61 # Clean up any results from a previous run
62 rm -r test-results >/dev/null 2>/dev/null
63
64 # test for timeout utility
65 if command -v timeout >/dev/null; then
66     TEST_TIMEOUT_CMD="timeout 2m "
67     echo "INFO: using 2 minute timeout for tests"
68 else
69     TEST_TIMEOUT_CMD=""
70 fi
71
72 trap 'e=$?; kill $!; exit $e' HUP INT TERM
73 # Run the tests
74 for test in $TESTS; do
75     $TEST_TIMEOUT_CMD ./$test "$@" &
76     wait $!
77 done
78 trap - HUP INT TERM
79
80 # Report results
81 ./aggregate-results.sh test-results/*
82
83 # Clean up
84 rm -rf test-results corpus.mail