summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2006-06-08Ensure that cat works with any of the options, -A -v -e -E -T,Jim Meyering
when applied to files in /proc and /sys, even when the FIONREAD ioctl produces nonsensical results. Before this change, cat would produce no output (or truncated output), for some linux kernels. * src/cat.c (write_pending): New function, factored out of cat. (cat): Also interpret a negative ioctl/FIONREAD count as indicating that there are bytes to read. Some versions of linux-2.6.16 do that. Write any pending output before returning. Reported by Dan Jacobson in <http://bugs.debian.org/370583>. * NEWS: Mention this bug fix. * tests/misc/cat-proc: New file. Test for the above. * tests/misc/Makefile.am (TESTS): Add cat-proc.
2006-06-05Rename file to avoid bugs with VPATH builds and Solaris 'make'.Paul Eggert
2006-06-05Don't assign to PROG; no longer neededPaul Eggert
now that Makefile.am sets PROG to the basename.
2006-06-05(PROG): Take the basename of $$tst,Paul Eggert
in case Solaris make has prepended the directory. (TESTS): Adjust to test script renamings.
2006-06-03Test for this:Jim Meyering
Make `cp --link --no-dereference' work also on systems where the link system call cannot create a hard link to a symbolic link. * src/copy.c (copy_internal) [LINK_FOLLOWS_SYMLINKS]: Don't use the link syscall on a symlink when it would do the wrong thing. Based on the patch by Aurelien Jarno: <http://bugs.debian.org/329451>
2006-06-03(TESTS): Add link-no-deref.Jim Meyering
2006-06-01Don't assume that >&- works.Paul Eggert
2006-06-01Don't assume that >&- works. Add a /dev/full test.Paul Eggert
2006-06-01Don't assume that \< \> works in sed.Paul Eggert
2006-05-28Source lang-default. From Ralf Wildenhues.Jim Meyering
2006-05-28AIX 4.3.3 gives a different diagnostic.Jim Meyering
Recognize it, too. Reported by Ralf Wildenhues, in http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00192.html
2006-05-13Test two more cases.Jim Meyering
2006-05-11.Jim Meyering
2006-05-11*** empty log message ***Jim Meyering
2006-05-11(TESTS): Add no-target-dir.Jim Meyering
2006-05-11ensure that mv did what it's supposed toJim Meyering
2006-05-11.Jim Meyering
2006-05-11(TESTS): Add atomic.Jim Meyering
2006-05-11New file/test for yesterday's fix.Jim Meyering
2006-05-11Avoid harmless `ambiguous redirect' diagnostic.Jim Meyering
2006-05-06.Jim Meyering
2006-05-06Expand to test broken links encounteredJim Meyering
implicitly, favoring Solaris 9 and OpenBSD 3.4 behavior.
2006-05-06Expand to test inode from readdir case.Jim Meyering
2006-05-06(TESTS): Add stat-vs-dirent.Jim Meyering
2006-05-06*** empty log message ***Jim Meyering
2006-05-06Work even on case-insensitive file system.Jim Meyering
2006-04-25(relative-3): New test, derived from a bug report by John Thomas McDole.Paul Eggert
2006-04-18Add new programs, base64, sha224sum, sha256sum, sha384sum, sha512sum.Jim Meyering
2006-04-12Use \{...\} in test RE, to test that we're conforming to POSIX.Paul Eggert
2006-04-12(fail-a): Adjust exit status to match new expr behavior, for status 2 versus 3.Paul Eggert
(anchor): New test. (bre1, bre2, bre3, bre4, bre5, bre6, bre7, bre8, bre9, bre10): (bre11, bre12, bre13, bre14, bre15, bre16, bre17, bre18, bre19, bre20): (bre21, bre22, bre23, bre24, bre25, bre26, bre27, bre28, bre29, bre30): (bre31, bre32, bre33, bre34, bre35, bre36, bre37, bre38, bre39, bre40): (bre41, bre42, bre43, bre44, bre45, bre46, bre47, bre48, bre49, bre50): (bre51, bre52, bre53, bre54, bre55, bre56, bre57, bre58, bre59, bre60): (bre61, bre62): New tests.
2006-04-12Do not assume that 'sed' can handle long, newline-free input.Paul Eggert
Evaluate expr once, not $n times.
2006-04-12Solaris 8 sh doesn't understand "if !". Do not assume that 'sed' canPaul Eggert
handle long, newline-free input.
2006-03-26.Jim Meyering
2006-03-26.Jim Meyering
2006-03-26remove this entire directoryJim Meyering
2006-03-26remove this entire directoryJim Meyering
2006-03-26(SUBDIRS): Remove basename.Jim Meyering
2006-03-26(TESTS): Sort. Add basename, dirname.Jim Meyering
2006-03-26new file -- from Eric BlakeJim Meyering
2006-03-26Move to ../misc/basenameJim Meyering
2006-03-26Moved from ../basename/basic.Jim Meyering
Add some tests, including fixed behavior for //.
2006-03-23Test the new nohup behavior.Paul Eggert
2006-03-12.Jim Meyering
2006-03-08Add test cases for append, nofollow, directory,Paul Eggert
and nolinks flags. Simplify redirection to /dev/null in some cases.
2006-03-08iflags->iflag. This fixes a typo that meant thePaul Eggert
noatime test never tested anything.
2006-03-05Set SHELL, if not already set, in order toJim Meyering
avoid failure when `make check' is run through debuild; dircolors would fail due to lack of $SHELL. Reported by Sven Joachim.
2006-03-05.Jim Meyering
2006-03-03add warning commentJim Meyering
2006-03-03Don't fail when run from an environment with SHELL not a BourneJim Meyering
shell, e.g. `env SHELL=/bin/csh make check' would fail this test. Invoke each non-failing test with -b. Reported by Michael Stone.
2006-02-27Derive --decode-using tests from the encode-based ones.Jim Meyering