check.mak: when a "make test.check" run fails, make it rerun the test with at least...
[platform/upstream/gst-common.git] / check.mak
1 clean-local-check:
2         for i in `find . -name ".libs" -type d`; do \
3           rm -rf $$i; \
4         done
5
6 if HAVE_VALGRIND
7 # hangs spectacularly on some machines, so let's not do this by default yet
8 check-valgrind:
9         make valgrind
10 else
11 check-valgrind:
12         @true
13 endif
14
15 LOOPS = 10
16
17 # run any given test by running make test.check
18 # if the test fails, run it again at at least debug level 2
19 %.check: %
20         @$(TESTS_ENVIRONMENT)                                   \
21         CK_DEFAULT_TIMEOUT=20                                   \
22         $* ||                                                   \
23         $(TESTS_ENVIRONMENT)                                    \
24         GST_DEBUG=$$GST_DEBUG,*:2                               \
25         CK_DEFAULT_TIMEOUT=20                                   \
26         $*
27
28 # run any given test in a loop
29 %.torture: %
30         @for i in `seq 1 $(LOOPS)`; do                          \
31         $(TESTS_ENVIRONMENT)                                    \
32         CK_DEFAULT_TIMEOUT=20                                   \
33         $*; done
34
35 # run any given test in an infinite loop
36 %.forever: %
37         @while true; do                                         \
38         $(TESTS_ENVIRONMENT)                                    \
39         CK_DEFAULT_TIMEOUT=20                                   \
40         $* || break; done
41
42 # valgrind any given test by running make test.valgrind
43 %.valgrind: %
44         $(TESTS_ENVIRONMENT)                                    \
45         CK_DEFAULT_TIMEOUT=60                                   \
46         libtool --mode=execute                                  \
47         $(VALGRIND_PATH) -q --suppressions=$(SUPPRESSIONS)      \
48         --tool=memcheck --leak-check=full --trace-children=yes  \
49         --leak-resolution=high --num-callers=20                 \
50         $* 2>&1 | tee valgrind.log
51         @if grep "==" valgrind.log > /dev/null 2>&1; then       \
52             rm valgrind.log;                                    \
53             exit 1;                                             \
54         fi
55         @rm valgrind.log
56
57 # gdb any given test by running make test.gdb
58 %.gdb: %
59         $(TESTS_ENVIRONMENT)                                    \
60         CK_FORK=no                                              \
61         libtool --mode=execute                                  \
62         gdb $*
63
64 # torture tests
65 torture: $(TESTS)
66         @echo "Torturing tests ..."
67         for i in `seq 1 $(LOOPS)`; do                           \
68                 make check ||                                   \
69                 (echo "Failure after $$i runs"; exit 1) ||      \
70                 exit 1;                                         \
71         done
72         @banner="All $(LOOPS) loops passed";                    \
73         dashes=`echo "$$banner" | sed s/./=/g`;                 \
74         echo $$dashes; echo $$banner; echo $$dashes
75
76 # valgrind all tests
77 valgrind: $(TESTS)
78         @echo "Valgrinding tests ..."
79         @failed=0;                                                      \
80         for t in $(filter-out $(VALGRIND_TESTS_DISABLE),$(TESTS)); do   \
81                 make $$t.valgrind;                                      \
82                 if test "$$?" -ne 0; then                               \
83                         echo "Valgrind error for test $$t";             \
84                         failed=`expr $$failed + 1`;                     \
85                         whicht="$$whicht $$t";                          \
86                 fi;                                                     \
87         done;                                                           \
88         if test "$$failed" -ne 0; then                                  \
89                 echo "$$failed tests had leaks under valgrind:";        \
90                 echo "$$whicht";                                        \
91                 false;                                                  \
92         fi
93
94 help:
95         @echo "make check                 -- run all checks"
96         @echo "make torture               -- run all checks $(LOOPS) times"
97         @echo "make (dir)/(test).check    -- run the given check once"
98         @echo "make (dir)/(test).forever  -- run the given check forever"
99         @echo "make (dir)/(test).torture  -- run the given check $(LOOPS) times"
100         @echo
101         @echo "make (dir)/(test).gdb      -- start up gdb for the given test"
102         @echo
103         @echo "make valgrind              -- valgrind all tests"
104         @echo "make (dir)/(test).valgrind -- valgrind the given test"