diff options
author | Jim Meyering <jim@meyering.net> | 1995-10-13 17:16:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-10-13 17:16:48 +0000 |
commit | 148f37c34e3ee8c5857fe40e62c1a7d8892c7ce9 (patch) | |
tree | 982cb9186b284a6faa499c7946a2c42b44479e8b | |
parent | 9845d179b353cb18133e7e57930c4aad00500fc0 (diff) | |
download | coreutils-148f37c34e3ee8c5857fe40e62c1a7d8892c7ce9.tar.xz |
Add tests to exercize -o 0.
-rwxr-xr-x | tests/join/test.data.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/join/test.data.pl b/tests/join/test.data.pl index d79a09c82..ed1abd784 100755 --- a/tests/join/test.data.pl +++ b/tests/join/test.data.pl @@ -45,4 +45,5 @@ ('7a', '-a1 -e . -o 2.7', "a\nb\nc\n", "a x y\nb\nc\n", ".\n.\n.\n", 0); -('8a', '-a1 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a x\nb .\nc .\nd G\ne\n", 0); +('8a', '-a1 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a .\nb .\nc .\nd G\n", 0); +('8b', '-a1 -a2 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a .\nb .\nc .\nd G\ne .\n", 0); |