]> git.notmuchmail.org Git - notmuch/blob - test/notmuch-test
ba28ff3908e4d415f0bbbdf4ea11f6b5d99f6570
[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   dump-restore
37   uuencode
38   thread-order
39   author-order
40   from-guessing
41   long-id
42   encoding
43   emacs
44   emacs-large-search-buffer
45   maildir-sync
46   crypto
47   symbol-hiding
48   search-folder-coherence
49   atomicity
50 "
51 TESTS=${NOTMUCH_TESTS:=$TESTS}
52
53 # Clean up any results from a previous run
54 rm -r test-results >/dev/null 2>/dev/null
55
56 # test for timeout utility
57 if command -v timeout >/dev/null; then
58     TEST_TIMEOUT_CMD="timeout 2m "
59     echo "INFO: using 2 minute timeout for tests"
60 else
61     TEST_TIMEOUT_CMD=""
62 fi
63
64 trap 'e=$?; kill $!; exit $e' HUP INT TERM
65 # Run the tests
66 for test in $TESTS; do
67     $TEST_TIMEOUT_CMD ./$test "$@" &
68     wait $!
69 done
70 trap - HUP INT TERM
71
72 # Report results
73 ./aggregate-results.sh test-results/*
74
75 # Clean up
76 rm -rf test-results corpus.mail