RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / share / automake-1.11 / am / check.am
blobb1d1aade4d9bb749c2683890e487bee2990caa5a
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright (C) 2001, 2003, 2006, 2007, 2008, 2009 Free Software
3 ## Foundation, Inc.
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 if %?COLOR%
19 # If stdout is a non-dumb tty, use colors.  If test -t is not supported,
20 # then this fails; a conservative approach.  Of course do not redirect
21 # stdout here, just stderr.
22 am__tty_colors = \
23 red=; grn=; lgn=; blu=; std=; \
24 test "X$(AM_COLOR_TESTS)" != Xno \
25 && test "X$$TERM" != Xdumb \
26 && { test "X$(AM_COLOR_TESTS)" = Xalways || test -t 1 2>/dev/null; } \
27 && { \
28   red='\e[0;31m'; \
29   grn='\e[0;32m'; \
30   lgn='\e[1;32m'; \
31   blu='\e[1;34m'; \
32   std='\e[m'; \
34 else !%?COLOR%
35 am__tty_colors = \
36 red=; grn=; lgn=; blu=; std=
37 endif !%?COLOR%
39 .PHONY: check-TESTS
41 if %?PARALLEL_TESTS%
43 include inst-vars.am
45 ## New parallel test driver.
47 ## This code is adapted from check.mk which was originally
48 ## written at EPITA/LRDE, further developed at Gostai, then made
49 ## its way from GNU coreutils to end up, largely rewritten, in
50 ## Automake.
52 ## It provides special support for "unit tests", that is to say,
53 ## tests that (once run) no longer need to be re-compiled and
54 ## re-run at each "make check", unless their sources changed.  To
55 ## enable unit-test supports, set RECHECK_LOGS to empty.  In such a
56 ## setting, that heavily relies on correct dependencies, its users may
57 ## prefer to define EXTRA_PROGRAMS instead of check_PROGRAMS, because
58 ## it allows intertwined compilation and execution of the tests.
59 ## Sometimes this helps catching errors earlier (you don't have to
60 ## wait for all the tests to be compiled).
62 ## Define TEST_SUITE_LOG to be the name of the global log to create.
63 ## Define TEST_LOGS to the set of logs to include in it.  It defaults
64 ## to $(TESTS), with `.test' and `@EXEEXT@' removed, and `'.log'
65 ## appended.
67 ## In addition to the magic "exit 77 means SKIP" feature (which was
68 ## imported from automake), there is a magic "exit 99 means FAIL" feature
69 ## which is useful if you need to issue a hard error no matter whether the
70 ## test is XFAIL or not.  You can disable this feature by setting the
71 ## variable DISABLE_HARD_ERRORS to a nonempty value.
73 # Restructured Text title and section.
74 am__rst_title   = sed 's/.*/   &   /;h;s/./=/g;p;x;p;g;p;s/.*//'
75 am__rst_section = sed 'p;s/./=/g;p;g'
77 # Put stdin (possibly several lines separated by ".  ") in a box.
78 am__text_box = $(AWK) '{                                \
79   n = split($$0, lines, "\\.  "); max = 0;              \
80   for (i = 1; i <= n; ++i)                              \
81     if (max < length(lines[i]))                         \
82       max = length(lines[i]);                           \
83   for (i = 0; i < max; ++i) line = line "=";            \
84   print line;                                           \
85   for (i = 1; i <= n; ++i) if (lines[i]) print lines[i];\
86   print line;                                           \
89 # Solaris 10 'make', and several other traditional 'make' implementations,
90 # pass "-e" to $(SHELL).  This contradicts POSIX.  Work around the problem
91 # by disabling -e (using the XSI extension "set +e") if it's set.
92 am__sh_e_setup = case $$- in *e*) set +e;; esac
94 # To be inserted before the command running the test.  Creates the
95 # directory for the log if needed.  Stores in $dir the directory
96 # containing $f, in $tst the test, in $log the log, and passes
97 # TESTS_ENVIRONMENT.  Save and restore TERM around use of
98 # TESTS_ENVIRONMENT, in case that unsets it.
99 am__check_pre =                                         \
100 $(am__sh_e_setup);                                      \
101 $(am__vpath_adj_setup) $(am__vpath_adj)                 \
102 srcdir=$(srcdir); export srcdir;                        \
103 rm -f $@-t;                                             \
104 trap 'st=$$?; rm -f '\''$(abs_builddir)/$@-t'\''; (exit $$st); exit $$st' \
105   1 2 13 15;                                            \
106 am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;            \
107 test "x$$am__odir" = x. || $(MKDIR_P) "$$am__odir" || exit $$?; \
108 if test -f "./$$f"; then dir=./;                        \
109 elif test -f "$$f"; then dir=;                          \
110 else dir="$(srcdir)/"; fi;                              \
111 tst=$$dir$$f; log='$@'; __SAVED_TERM=$$TERM;            \
112 $(TESTS_ENVIRONMENT)
114 # To be appended to the command running the test.  Handle the stdout
115 # and stderr redirection, and catch the exit status.
116 am__check_post =                                        \
117 >$@-t 2>&1;                                             \
118 estatus=$$?;                                            \
119 if test -n '$(DISABLE_HARD_ERRORS)'                     \
120    && test $$estatus -eq 99; then                       \
121   estatus=1;                                            \
122 fi;                                                     \
123 TERM=$$__SAVED_TERM; export TERM;                       \
124 $(am__tty_colors);                                      \
125 xfailed=PASS;                                           \
126 case " $(XFAIL_TESTS) " in                              \
127   *[\ \ ]$$f[\ \        ]* | *[\ \      ]$$dir$$f[\ \   ]*) \
128     xfailed=XFAIL;;                                     \
129 esac;                                                   \
130 case $$estatus:$$xfailed in                             \
131     0:XFAIL) col=$$red; res=XPASS;;                     \
132     0:*)     col=$$grn; res=PASS ;;                     \
133     77:*)    col=$$blu; res=SKIP ;;                     \
134     99:*)    col=$$red; res=FAIL ;;                     \
135     *:XFAIL) col=$$lgn; res=XFAIL;;                     \
136     *:*)     col=$$red; res=FAIL ;;                     \
137 esac;                                                   \
138 echo "$${col}$$res$${std}: $$f";                        \
139 echo "$$res: $$f (exit: $$estatus)" |                   \
140   $(am__rst_section) >$@;                               \
141 cat $@-t >>$@;                                          \
142 rm -f $@-t
144 $(TEST_SUITE_LOG): $(TEST_LOGS)
145         @$(am__sh_e_setup);                                             \
146         list='$(TEST_LOGS)';                                            \
147         results=`for f in $$list; do                                    \
148                    read line < $$f && echo "$$line" || echo FAIL;       \
149                  done`;                                                 \
150         all=`echo "$$results" | sed '/^$$/d' | wc -l | sed -e 's/^[      ]*//'`; \
151         fail=`echo "$$results" | grep -c '^FAIL'`;                      \
152         pass=`echo "$$results" | grep -c '^PASS'`;                      \
153         skip=`echo "$$results" | grep -c '^SKIP'`;                      \
154         xfail=`echo "$$results" | grep -c '^XFAIL'`;                    \
155         xpass=`echo "$$results" | grep -c '^XPASS'`;                    \
156         failures=`expr $$fail + $$xpass`;                               \
157         all=`expr $$all - $$skip`;                                      \
158         if test "$$all" -eq 1; then tests=test; All=;                   \
159         else tests=tests; All="All "; fi;                               \
160         case fail=$$fail:xpass=$$xpass:xfail=$$xfail in                 \
161           fail=0:xpass=0:xfail=0)                                       \
162             msg="$$All$$all $$tests passed.  ";                         \
163             exit=true;;                                                 \
164           fail=0:xpass=0:xfail=*)                                       \
165             msg="$$All$$all $$tests behaved as expected";               \
166             if test "$$xfail" -eq 1; then xfailures=failure;            \
167             else xfailures=failures; fi;                                \
168             msg="$$msg ($$xfail expected $$xfailures).  ";              \
169             exit=true;;                                                 \
170           fail=*:xpass=0:xfail=*)                                       \
171             msg="$$fail of $$all $$tests failed.  ";                    \
172             exit=false;;                                                \
173           fail=*:xpass=*:xfail=*)                                       \
174             msg="$$failures of $$all $$tests did not behave as expected"; \
175             if test "$$xpass" -eq 1; then xpasses=pass;                 \
176             else xpasses=passes; fi;                                    \
177             msg="$$msg ($$xpass unexpected $$xpasses).  ";              \
178             exit=false;;                                                \
179           *)                                                            \
180             echo >&2 "incorrect case"; exit 4;;                         \
181         esac;                                                           \
182         if test "$$skip" -ne 0; then                                    \
183           if test "$$skip" -eq 1; then                                  \
184             msg="$$msg($$skip test was not run).  ";                    \
185           else                                                          \
186             msg="$$msg($$skip tests were not run).  ";                  \
187           fi;                                                           \
188         fi;                                                             \
189         {                                                               \
190           echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" |       \
191             $(am__rst_title);                                           \
192           echo "$$msg";                                                 \
193           echo;                                                         \
194           echo ".. contents:: :depth: 2";                               \
195           echo;                                                         \
196           for f in $$list; do                                           \
197             read line < $$f;                                            \
198             case $$line in                                              \
199               PASS:*|XFAIL:*);;                                         \
200               *) echo; cat $$f;;                                        \
201             esac;                                                       \
202           done;                                                         \
203         } >$(TEST_SUITE_LOG).tmp;                                       \
204         mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG);                     \
205         if test "$$failures" -ne 0; then                                \
206           msg="$${msg}See $(subdir)/$(TEST_SUITE_LOG).  ";              \
207           if test -n "$(PACKAGE_BUGREPORT)"; then                       \
208             msg="$${msg}Please report to $(PACKAGE_BUGREPORT).  ";      \
209           fi;                                                           \
210         fi;                                                             \
211         test x"$$VERBOSE" = x || $$exit || cat $(TEST_SUITE_LOG);       \
212         $(am__tty_colors);                                              \
213         if $$exit; then                                                 \
214           echo $(ECHO_N) "$$grn$(ECHO_C)";                              \
215          else                                                           \
216           echo $(ECHO_N) "$$red$(ECHO_C)";                              \
217         fi;                                                             \
218         echo "$$msg" | $(am__text_box);                                 \
219         echo $(ECHO_N) "$$std$(ECHO_C)";                                \
220         $$exit
222 RECHECK_LOGS = $(TEST_LOGS)
224 # Run all the tests.
225 check-TESTS:
226 ## Expand $(RECHECK_LOGS) only once, to avoid exceeding line length limits.
227         @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
228 ## We always have to remove TEST_SUITE_LOG, to ensure its rule is run
229 ## in any case even in lazy mode: otherwise, if no test needs rerunning,
230 ## or a prior run plus reruns all happen within the same timestamp
231 ## (can happen with a prior `make TESTS=<subset>'),
232 ## then we get no log output.
233 ## OTOH, this means that, in the rule for `$(TEST_SUITE_LOG)', we
234 ## cannot use `$?' to compute the set of lazily rerun tests, lest
235 ## we rely on .PHONY to work portably.
236         @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
237         @list='$(TEST_LOGS)';                                           \
238         list=`for f in $$list; do                                       \
239           test .log = $$f || echo $$f;                                  \
240         done | tr '\012\015' '  '`;                                     \
241         $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$list"
243 AM_RECURSIVE_TARGETS += check
245 ## -------------- ##
246 ## Produce HTML.  ##
247 ## -------------- ##
249 .log.html:
250         @list='$(RST2HTML) $$RST2HTML rst2html rst2html.py';            \
251         for r2h in $$list; do                                           \
252           if ($$r2h --version) >/dev/null 2>&1; then                    \
253             R2H=$$r2h;                                                  \
254           fi;                                                           \
255         done;                                                           \
256         if test -z "$$R2H"; then                                        \
257           echo >&2 "cannot find rst2html, cannot create $@";            \
258           exit 2;                                                       \
259         fi;                                                             \
260         $$R2H $< >$@.tmp
261         @mv $@.tmp $@
263 # Be sure to run check first, and then to convert the result.
264 # Beware of concurrent executions.  Run "check" not "check-TESTS", as
265 # check-SCRIPTS and other dependencies are rebuilt by the former only.
266 # And expect check to fail.
267 check-html:
268         @if $(MAKE) $(AM_MAKEFLAGS) check; then                 \
269           rv=0; else rv=$$?;                                    \
270         fi;                                                     \
271         $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_HTML) || exit 4;   \
272         exit $$rv
274 .PHONY: check-html
275 .MAKE: check-html
277 AM_RECURSIVE_TARGETS += check-html
279 ## -------------------- ##
280 ## Rechecking failures. ##
281 ## -------------------- ##
283 ## Rerun all FAILed or XPASSed tests.
284 recheck recheck-html:
285         @target=`echo $@ | sed 's,^re,,'`;                              \
286         list='$(TEST_LOGS)';                                            \
287         list=`for f in $$list; do                                       \
288                 test -f $$f || continue;                                \
289                 if read line < $$f; then                                \
290                   case $$line in FAIL*|XPASS*) echo $$f;; esac;         \
291                 else echo $$f; fi;                                      \
292               done | tr '\012\015' '  '`;                               \
293         $(MAKE) $(AM_MAKEFLAGS) $$target AM_MAKEFLAGS='$(AM_MAKEFLAGS) TEST_LOGS="'"$$list"'"'
295 .PHONY: recheck recheck-html
296 .MAKE: recheck recheck-html
298 AM_RECURSIVE_TARGETS += recheck recheck-html
300 else !%?PARALLEL_TESTS%
302 check-TESTS: $(TESTS)
303         @failed=0; all=0; xfail=0; xpass=0; skip=0; \
304         srcdir=$(srcdir); export srcdir; \
305 ## Make sure Solaris VPATH-expands all members of this list, even
306 ## the first and the last one; thus the spaces around $(TESTS)
307         list=' $(TESTS) '; \
308         $(am__tty_colors); \
309         if test -n "$$list"; then \
310           for tst in $$list; do \
311             if test -f ./$$tst; then dir=./; \
312 ## Note: Solaris 2.7 seems to expand TESTS using VPATH.  That's
313 ## why we also try `dir='
314             elif test -f $$tst; then dir=; \
315             else dir="$(srcdir)/"; fi; \
316             if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
317 ## Success
318               all=`expr $$all + 1`; \
319               case " $(XFAIL_TESTS) " in \
320               *[\ \     ]$$tst[\ \      ]*) \
321                 xpass=`expr $$xpass + 1`; \
322                 failed=`expr $$failed + 1`; \
323                 col=$$red; res=XPASS; \
324               ;; \
325               *) \
326                 col=$$grn; res=PASS; \
327               ;; \
328               esac; \
329             elif test $$? -ne 77; then \
330 ## Failure
331               all=`expr $$all + 1`; \
332               case " $(XFAIL_TESTS) " in \
333               *[\ \     ]$$tst[\ \      ]*) \
334                 xfail=`expr $$xfail + 1`; \
335                 col=$$lgn; res=XFAIL; \
336               ;; \
337               *) \
338                 failed=`expr $$failed + 1`; \
339                 col=$$red; res=FAIL; \
340               ;; \
341               esac; \
342             else \
343 ## Skipped
344               skip=`expr $$skip + 1`; \
345               col=$$blu; res=SKIP; \
346             fi; \
347             echo "$${col}$$res$${std}: $$tst"; \
348           done; \
349 ## Prepare the banner
350           if test "$$all" -eq 1; then \
351             tests="test"; \
352             All=""; \
353           else \
354             tests="tests"; \
355             All="All "; \
356           fi; \
357           if test "$$failed" -eq 0; then \
358             if test "$$xfail" -eq 0; then \
359               banner="$$All$$all $$tests passed"; \
360             else \
361               if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
362               banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
363             fi; \
364           else \
365             if test "$$xpass" -eq 0; then \
366               banner="$$failed of $$all $$tests failed"; \
367             else \
368               if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
369               banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
370             fi; \
371           fi; \
372 ## DASHES should contain the largest line of the banner.
373           dashes="$$banner"; \
374           skipped=""; \
375           if test "$$skip" -ne 0; then \
376             if test "$$skip" -eq 1; then \
377               skipped="($$skip test was not run)"; \
378             else \
379               skipped="($$skip tests were not run)"; \
380             fi; \
381             test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
382               dashes="$$skipped"; \
383           fi; \
384           report=""; \
385           if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
386             report="Please report to $(PACKAGE_BUGREPORT)"; \
387             test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
388               dashes="$$report"; \
389           fi; \
390           dashes=`echo "$$dashes" | sed s/./=/g`; \
391           if test "$$failed" -eq 0; then \
392             echo "$$grn$$dashes"; \
393           else \
394             echo "$$red$$dashes"; \
395           fi; \
396           echo "$$banner"; \
397           test -z "$$skipped" || echo "$$skipped"; \
398           test -z "$$report" || echo "$$report"; \
399           echo "$$dashes$$std"; \
400           test "$$failed" -eq 0; \
401         else :; fi
403 endif !%?PARALLEL_TESTS%