<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coreutils/tests/check.mk, branch v7.2</title>
<subtitle>Mirror of https://https.git.savannah.gnu.org/git/coreutils.git/
</subtitle>
<id>https://git.shady.money/coreutils/atom?h=v7.2</id>
<link rel='self' href='https://git.shady.money/coreutils/atom?h=v7.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/'/>
<updated>2009-03-02T08:35:12Z</updated>
<entry>
<title>tests: when skipping a test, say why on screen, not just in the log</title>
<updated>2009-03-02T08:35:12Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2009-02-27T08:12:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=1c7d5b58476d5bf5ab8db5d025b7d0820611aae7'/>
<id>urn:sha1:1c7d5b58476d5bf5ab8db5d025b7d0820611aae7</id>
<content type='text'>
* tests/test-lib.sh: Redirect also to descriptor 9.
Better one-line why-skip diagnostics.
* tests/check.mk (TESTS_ENVIRONMENT): Redirect 9 to stderr.
* tests/misc/pwd-unreadable-parent: Remove redundant "skipping..." diag.
</content>
</entry>
<entry>
<title>tests: seq: check for today's extended long double fix</title>
<updated>2008-10-26T09:45:34Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-10-25T09:34:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=b4ec994b26662f890da855c8a1914aff4d2d3faa'/>
<id>urn:sha1:b4ec994b26662f890da855c8a1914aff4d2d3faa</id>
<content type='text'>
* tests/misc/seq-long-double: New file.  Test for today's bug fix.
* tests/check.mk (TESTS_ENVIRONMENT): Export CC definition.
* tests/Makefile.am (TESTS): Add misc/seq-long-double.
* NEWS (Bug fixes): Mention it.
</content>
</entry>
<entry>
<title>tests: fix the install/strip-program test</title>
<updated>2008-10-04T15:12:08Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-10-04T15:12:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=fbc5aa7c47597694d8973a134143a2281748eec6'/>
<id>urn:sha1:fbc5aa7c47597694d8973a134143a2281748eec6</id>
<content type='text'>
* tests/install/strip-program: Use $PREFERABLY_POSIX_SHELL,
not POSIX_SHELL.  The latter may be empty, and would fail
on OpenBSD 3.9.
* tests/check.mk (TESTS_ENVIRONMENT): Propagate
PREFERABLY_POSIX_SHELL to tests.
</content>
</entry>
<entry>
<title>fix make variable quotation error</title>
<updated>2008-09-29T20:49:08Z</updated>
<author>
<name>Ralf Wildenhues</name>
<email>Ralf.Wildenhues@gmx.de</email>
</author>
<published>2008-09-29T20:30:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=0482f193b56d3e915efba78ba116915edf806bfd'/>
<id>urn:sha1:0482f193b56d3e915efba78ba116915edf806bfd</id>
<content type='text'>
* tests/check.mk (TESTS_ENVIRONMENT): Quote shell variable
$tmp__, fix expansion.
</content>
</entry>
<entry>
<title>seq -0.1 0.1 2: print final number when locale's decimal point is ","</title>
<updated>2008-09-26T21:31:30Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-09-25T18:01:24Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=e13188e7ef7bbd609c1586332a335b4194b881aa'/>
<id>urn:sha1:e13188e7ef7bbd609c1586332a335b4194b881aa</id>
<content type='text'>
* src/seq.c (print_numbers): Use strtold, not c_strtold to convert
from just-formatted-using-asprintf string back to double, since
asprintf may have used something other than "." as the decimal point.
Reported by lsof@nodata.co.uk as &lt;http://bugzilla.redhat.com/463556&gt;.
Thanks to Ondřej Vašík for discovering that the bug was locale-related.

    $ LC_ALL=cs_CZ.UTF-8 seq -0.1 0.1 2|grep 2.0
    [Exit 1]
    $ seq -0.1 0.1 2|grep 2.0
    2.0

* tests/check.mk (TESTS_ENVIRONMENT): Add LOCALE_FR_UTF8, for...
* tests/misc/seq [locale-dec-pt]: New test for the above.
* NEWS (bug fix): Mention it.
</content>
</entry>
<entry>
<title>df: new option: --total to print grand totals</title>
<updated>2008-09-03T13:39:28Z</updated>
<author>
<name>Kamil Dudka</name>
<email>kdudka@redhat.com</email>
</author>
<published>2008-09-03T08:33:06Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=ea2887bbe4c04e3ff5bae2d532a1e19d3198dfce'/>
<id>urn:sha1:ea2887bbe4c04e3ff5bae2d532a1e19d3198dfce</id>
<content type='text'>
* src/df.c (add_uint_with_neg_flag): New function to add two integral
values with separate negation flag.
(show_dev): New parameter force_fsu to display numbers directly. Collect
summary statistics on each printed device.
(usage): Mention new option --total in --help.
(main): Initialize summary on program start. Handle new option --total.
* tests/df/total: Dummy test case for new --total option.
* tests/df/total-awk: Better test case for new --total option (requires
awk).
* doc/coreutils.texi: Mention new parameter --total.
* NEWS: Mention the change.
* TODO: Removed completed task.
</content>
</entry>
<entry>
<title>make check: accommodate stricter POSIX-conforming shells</title>
<updated>2008-07-10T06:41:28Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-07-10T06:41:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=b1a1fcbf578a3d2be1d616b6675a7702c8fde49b'/>
<id>urn:sha1:b1a1fcbf578a3d2be1d616b6675a7702c8fde49b</id>
<content type='text'>
Without this, test-related variable settings were not exported to
the shell_or_perl_ function when using dash or Solaris 11's /bin/sh.
* tests/check.mk (TESTS_ENVIRONMENT): Use an explicit "export",
so as not to rely on non-POSIX behavior of some /bin/sh (e.g.,
bash-based ones).
</content>
</entry>
<entry>
<title>* tests/check.mk: Fix a typo in a comment.</title>
<updated>2008-06-18T08:01:54Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-06-18T08:01:54Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=61f94d4dbcd6af82b3b2fa7dcc965740950aebb1'/>
<id>urn:sha1:61f94d4dbcd6af82b3b2fa7dcc965740950aebb1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>run gnulib-tests in parallel</title>
<updated>2008-06-14T20:35:02Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-06-13T18:31:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=44530f2ddd97e02728520cca9cb0ba2bada750d1'/>
<id>urn:sha1:44530f2ddd97e02728520cca9cb0ba2bada750d1</id>
<content type='text'>
* tests/Makefile.am: Define AUTOMAKE_OPTIONS, so check.mk can append.
* tests/check.mk: Define SUFFIXES, so check.mk can append.
* build-aux/check.mk (SUFFIXES): Append, so as not to evoke
automake warning the prior definition in gnulib-tests/gnulib.mk.
(AUTOMAKE_OPTIONS): Likewise.
* gnulib-tests/Makefile.am (TEST_LOGS): Define.
Include build-aux/check.mk
</content>
</entry>
<entry>
<title>in 280+ tests/* files, use $srcdir, not $top_srcdir/tests</title>
<updated>2008-05-27T11:48:32Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2008-05-27T11:45:44Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=00a309823501317f9061a28e98cc13177bc4a12a'/>
<id>urn:sha1:00a309823501317f9061a28e98cc13177bc4a12a</id>
<content type='text'>
</content>
</entry>
</feed>
