projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
169a0a3
)
[o2, nul-tab]: New tests for changes of 2003-09-02.
author
Jim Meyering
<jim@meyering.net>
Thu, 4 Sep 2003 22:11:16 +0000
(22:11 +0000)
committer
Jim Meyering
<jim@meyering.net>
Thu, 4 Sep 2003 22:11:16 +0000
(22:11 +0000)
tests/sort/Test.pm
patch
|
blob
|
history
diff --git
a/tests/sort/Test.pm
b/tests/sort/Test.pm
index 2f42ec584aa96f130d5e877e2d10e963de1b1b1d..e331b6eb2d7b3b056c55d96d98109e7946cb7fd0 100755
(executable)
--- a/
tests/sort/Test.pm
+++ b/
tests/sort/Test.pm
@@
-243,6
+243,11
@@
my @tv = (
# \n's are part of the input line.
["use-nl", '', "\n\t\n", "\n\t\n", 0],
+# Specifying two -o options should evoke a failure
+["o2", '-o x -o y', '', '', 2],
+
+# -t '\0' is accepted, as of coreutils-5.0.91
+['nul-tab', "-k2,2 -t '\\0'", "a\0z\01\nb\0y\02\n", "b\0y\02\na\0z\01\n", 0],
);
sub test_vector