From: brarcher Date: Tue, 19 Aug 2014 12:22:54 +0000 (+0000) Subject: doc: mention that the output from "make check" depends on Automake version X-Git-Tag: 0.10.0~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84e34221a95e5e5a9630517835c03a66a5ba628f;p=check doc: mention that the output from "make check" depends on Automake version git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@1190 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- diff --git a/doc/check.texi b/doc/check.texi index 4b02889..5f6e9c0 100644 --- a/doc/check.texi +++ b/doc/check.texi @@ -873,8 +873,7 @@ subunit} test runner protocol. See 'subunit support' under the Advanced Features @end table With the @code{CK_NORMAL} flag specified in our @code{main()}, let's -rerun make check now. As before, we get the following satisfying -output: +rerun @code{make check} now. The output from the unit test is as follows: @example @verbatim Running suite(s): Money @@ -889,6 +888,11 @@ Please report to check-devel AT lists.sourceforge.net @end verbatim @end example +Note that the output from @code{make check} prior to Automake 1.13 will +be the output of the unit test program. Starting with 1.13 Automake will +run all unit test programs concurrently and store the output in +log files. The output listed above should be present in a log file. + The first number in the summary line tells us that 0% of our tests passed, and the rest of the line tells us that there was one check in total, and of those checks, one failure and zero errors. The next