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