<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coreutils/tests, branch v8.4</title>
<subtitle>Mirror of https://https.git.savannah.gnu.org/git/coreutils.git/
</subtitle>
<id>https://git.shady.money/coreutils/atom?h=v8.4</id>
<link rel='self' href='https://git.shady.money/coreutils/atom?h=v8.4'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/'/>
<updated>2010-01-13T12:42:49Z</updated>
<entry>
<title>tests: avoid spurious failures on older shells</title>
<updated>2010-01-13T12:42:49Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2010-01-13T12:19:26Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=e55d8828111bf6f9ff0f419fe0045de6ecd1ecaa'/>
<id>urn:sha1:e55d8828111bf6f9ff0f419fe0045de6ecd1ecaa</id>
<content type='text'>
* tests/tail-2/inotify-hash-abuse: Use kill rather than wait
to determine if the tail process is still running.
* tests/tail-2/inotify-hash-abuse2: Ditto.
</content>
</entry>
<entry>
<title>tests: work around spurious test failure with OpenBSD4.5's /bin/sh</title>
<updated>2010-01-13T09:55:55Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2010-01-13T09:53:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=f28c7d959be30be0b216880878e8b0909d810a18'/>
<id>urn:sha1:f28c7d959be30be0b216880878e8b0909d810a18</id>
<content type='text'>
* tests/ls/infloop: OpenBSD4.5's /bin/sh would mistakenly include
"set -x"-output in an application's stderr stream when stderr is
redirected before stdout.  This was causing one spurious test failure.
The work-around: redirect stdout first.
Reported by Nelson Beebe.
</content>
</entry>
<entry>
<title>tests: don't silently skip the sort-version tests</title>
<updated>2010-01-13T09:21:02Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2010-01-13T09:19:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=3b498ba1410d9730782db439db27e85ff20d0e56'/>
<id>urn:sha1:3b498ba1410d9730782db439db27e85ff20d0e56</id>
<content type='text'>
* tests/misc/sort-version: Don't use &lt;&lt;- and indented here-doc contents.
s/&lt;&lt;-/&lt;&lt;/ and unindent the here-document contents.  Otherwise,
bash would ignore the indented delimiter and use EOF, thus silently
skipping this test.  OpenBSD5.4's shell reported the failure:
  $ printf 'cat&lt;&lt;-x\n foo\n x\n'|sh
  sh: &lt;stdin&gt;[4]: here document `x' unclosed
  [Exit 1]
by contrast, bash warns but still exits successfully:
  $ printf 'cat&lt;&lt;-x\n foo\n x\n'|bash &amp;&amp; echo you lose
  bash: line 3: warning: here-document at line 1 delimited by \
    end-of-file (wanted `x')
   foo
   x
  you lose
</content>
</entry>
<entry>
<title>tests: avoid spurious failure on old kernel</title>
<updated>2010-01-12T13:00:05Z</updated>
<author>
<name>Eric Blake</name>
<email>ebb9@byu.net</email>
</author>
<published>2010-01-08T19:01:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=39243f0ea8efc572e3206b5f0fca12696a52308e'/>
<id>urn:sha1:39243f0ea8efc572e3206b5f0fca12696a52308e</id>
<content type='text'>
* tests/touch/no-dereference: Skip test if utimensat doesn't
support symlinks.
Reported by Bernhard Voelker.
</content>
</entry>
<entry>
<title>maint: fix tests on solaris by using /usr/xpg4/bin</title>
<updated>2010-01-12T10:26:27Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2010-01-12T10:18:21Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=b81cdbf31ecf504aa9580ef04bfdcfa57311fdba'/>
<id>urn:sha1:b81cdbf31ecf504aa9580ef04bfdcfa57311fdba</id>
<content type='text'>
* tests/check.mk: Prepend /usr/xpg4/bin to the $PATH if present.
Using the more standard utilities allows tests such as misc/printenv,
which uses the -E option to grep, to complete.
</content>
</entry>
<entry>
<title>pr: ensure the page header line is of the required format</title>
<updated>2010-01-07T04:07:23Z</updated>
<author>
<name>Eric Blake</name>
<email>ebb9@byu.net</email>
</author>
<published>2010-01-07T03:57:40Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=67d3e263504115144380dfaffd41c9cef3cf68a4'/>
<id>urn:sha1:67d3e263504115144380dfaffd41c9cef3cf68a4</id>
<content type='text'>
Before this change, with too long a file name, the name would
abut the date field on the left and possibly also the "Page N"
field on the right, rather than leaving a one-space separator
in each case.  Fixes a regression introduced on Mar 6 2009,
by commit a4053c5291d5797734b3e4f042f9e1adf3944fd6

* src/pr.c (print_header): Ensure that there is at least one
space before and after the file name part of the header line.
* NEWS: Mention it.
* tests/pr/W20l24f-ll: s/xPage/ x Page/.
* THANKS: Update.
Reported by Denis McKeon, in https://savannah.gnu.org/bugs/?28492.
</content>
</entry>
<entry>
<title>ls: fix color of broken symlinks colored as target</title>
<updated>2010-01-01T20:41:46Z</updated>
<author>
<name>Eric Blake</name>
<email>ebb9@byu.net</email>
</author>
<published>2010-01-01T14:39:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=b7f2b51c42edabd516c5ecc748a654da736c912c'/>
<id>urn:sha1:b7f2b51c42edabd516c5ecc748a654da736c912c</id>
<content type='text'>
* src/ls.c (print_color_indicator): When using 'LINK target' in
dircolors, treat broken symlink as C_ORPHAN.
* tests/misc/ls-misc (sl-dangle2, sl-dangle3, sl-dangle4)
(sl-dangle5): Test for it, and add more coverage.
* NEWS: Document it.
* THANKS: Update.
Reported by Chris Jones.
</content>
</entry>
<entry>
<title>maint: add a few copyrights; remove obsolete README file</title>
<updated>2010-01-01T13:06:48Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2010-01-01T10:02:24Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=157c2bc55e7433bd3d79197f55d33b80f79eccf7'/>
<id>urn:sha1:157c2bc55e7433bd3d79197f55d33b80f79eccf7</id>
<content type='text'>
* tests/README: Remove long-obsolete file.
* tests/Makefile.am (EXTRA_DIST): Remove README.
* tests/misc/truncate-dir-fail: Add copyright comment.
* tests/misc/selinux: Likewise.
* tests/misc/chcon: Likewise.
* tests/misc/chcon-fail: Likewise.
* tests/sample-test: Use only 2010 in this list.
</content>
</entry>
<entry>
<title>maint: update all FSF copyright year lists to include 2010</title>
<updated>2010-01-01T13:06:47Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2010-01-01T09:56:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=1aa17dc89b3f313697661541adca0aa0defbdc09'/>
<id>urn:sha1:1aa17dc89b3f313697661541adca0aa0defbdc09</id>
<content type='text'>
Use this command:
git ls-files | grep -v COPYING \
  | xargs env UPDATE_COPYRIGHT_USE_INTERVALS=1 \
      build-aux/update-copyright
</content>
</entry>
<entry>
<title>tail: test for a bug in inotify-enabled tail -F</title>
<updated>2009-12-30T10:22:55Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2009-12-29T15:37:04Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=fe062d563a09481162f5c11b154d047331708b7f'/>
<id>urn:sha1:fe062d563a09481162f5c11b154d047331708b7f</id>
<content type='text'>
tail -F a b would stop tracking additions to b after "mv a b".
* tests/tail-2/F-vs-rename: New file.
* tests/Makefile.am (TESTS): Add it.
</content>
</entry>
</feed>
