diff options
author | Kevin Lyda <kevin@ie.suberic.net> | 2012-04-18 00:38:04 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2012-05-08 02:18:39 +0100 |
commit | aa078afcf9828344697ef0469272657ac12a30b1 (patch) | |
tree | 85ee107a3d3e835ed991d5b8904907505c685912 /tests | |
parent | fedebc59a040a7e34dce5c987b7f6fcf2cefa904 (diff) | |
download | coreutils-aa078afcf9828344697ef0469272657ac12a30b1.tar.xz |
maint: fix common spelling errors
These were identified using: https://github.com/lyda/misspell-check
executed like: git ls-files | misspellings -f -
* src/cat.c: Correct a spelling error.
* src/comm.c: Likewise.
* src/expr.c: Likewise.
* src/pr.c: Likewise.
* src/tac.c: Likewise.
* src/test.c: Likewise.
* src/ChangeLog-2005: Likewise.
* src/ChangeLog-2007: Likewise.
* src/NEWS: Likewise.
* src/doc/coreutils.texi: Likewise.
* src/lib/ChangeLog-2007: Likewise.
* src/man/help2man: Likewise.
* src/old/fileutils/ChangeLog-1997: Likewise.
* src/old/fileutils/NEWS: Likewise.
* src/old/sh-utils/ChangeLog.0: Likewise.
* src/old/textutils/ChangeLog: Likewise.
* src/tests/misc/comm: Likewise.
* src/tests/misc/uniq: Likewise.
* src/tests/mv/dir2dir: Likewise.
* src/cfg.mk (old_NEWS_hash): update with `make update-NEWS-hash`
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/comm | 14 | ||||
-rwxr-xr-x | tests/misc/uniq | 2 | ||||
-rwxr-xr-x | tests/mv/dir2dir | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/tests/misc/comm b/tests/misc/comm index 905b5f862..0de4f6999 100755 --- a/tests/misc/comm +++ b/tests/misc/comm @@ -34,25 +34,25 @@ my @Tests = # basic operation ['basic', @inputs, {OUT=>"1\n\t2\n\t\t3\n"} ], - # supress lines unique to file 1 + # suppress lines unique to file 1 ['opt-1', '-1', @inputs, {OUT=>"2\n\t3\n"} ], - # supress lines unique to file 2 + # suppress lines unique to file 2 ['opt-2', '-2', @inputs, {OUT=>"1\n\t3\n"} ], - # supress lines that appear in both files + # suppress lines that appear in both files ['opt-3', '-3', @inputs, {OUT=>"1\n\t2\n"} ], - # supress lines unique to file 1 and lines unique to file 2 + # suppress lines unique to file 1 and lines unique to file 2 ['opt-12', '-1', '-2', @inputs, {OUT=>"3\n"} ], - # supress lines unique to file 1 and those that appear in both files + # suppress lines unique to file 1 and those that appear in both files ['opt-13', '-1', '-3', @inputs, {OUT=>"2\n"} ], - # supress lines unique to file 2 and those that appear in both files + # suppress lines unique to file 2 and those that appear in both files ['opt-23', '-2', '-3', @inputs, {OUT=>"1\n"} ], - # supress all output (really?) + # suppress all output (really?) ['opt-123', '-1', '-2', '-3', @inputs, {OUT=>""} ], # invalid missing command line argument (1) diff --git a/tests/misc/uniq b/tests/misc/uniq index 91028a9c7..d0e6d151a 100755 --- a/tests/misc/uniq +++ b/tests/misc/uniq @@ -162,7 +162,7 @@ my @Tests = ['65', qw(-f 1 -w 3), {IN=>"a a a\nb a c\n"}, {OUT=>"a a a\n"}], # Make sure we don't break if the file contains \0 ['90', '', {IN=>"a\0a\na\n"}, {OUT=>"a\0a\na\n"}], - # Check fields seperated by tabs and by spaces + # Check fields separated by tabs and by spaces ['91', '', {IN=>"a\ta\na a\n"}, {OUT=>"a\ta\na a\n"}], ['92', qw(-f 1), {IN=>"a\ta\na a\n"}, {OUT=>"a\ta\na a\n"}], ['93', qw(-f 2), {IN=>"a\ta a\na a a\n"}, {OUT=>"a\ta a\n"}], diff --git a/tests/mv/dir2dir b/tests/mv/dir2dir index c170de20a..4322fd23d 100755 --- a/tests/mv/dir2dir +++ b/tests/mv/dir2dir @@ -25,7 +25,7 @@ touch a/t/f || framework_failure_ # Expect this to fail with the expected diagnostic. -# For an interrim (pre-6.0) release, it would give an erroneous +# For an interim (pre-6.0) release, it would give an erroneous # diagnostic about moving one directory to a subdirectory of itself. mv b/t a 2> out && fail=1 |