diff options
author | Jim Meyering <jim@meyering.net> | 2005-09-16 06:54:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-09-16 06:54:19 +0000 |
commit | 8a11d99e7d75c287e8a4e511d6267eccd4866f57 (patch) | |
tree | 7e896a3361365a8baac84f1094f88f5b418eac00 /tests/misc/date | |
parent | d2fa6df35ec38b9a3bfc51437a800211ac4842fb (diff) | |
download | coreutils-8a11d99e7d75c287e8a4e511d6267eccd4866f57.tar.xz |
(subfmt-up1): Test the combination of the
to-upper-case modifier (^) and a conversion specifier that
expands to a string containing lower case characters.
Diffstat (limited to 'tests/misc/date')
-rwxr-xr-x | tests/misc/date | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/misc/date b/tests/misc/date index 0b8a3d77e..961d57c55 100755 --- a/tests/misc/date +++ b/tests/misc/date @@ -239,6 +239,11 @@ my @Tests = ['fill-1', '-d 1999-12-08 +%_3d', {OUT=>' 8'}], ['fill-2', '-d 1999-12-08 +%03d', {OUT=>'008'}], + + # Test the combination of the to-upper-case modifier (^) and a conversion + # specifier that expands to a string containing lower case characters. + ['subfmt-up1', '-d "1999-12-08 7:30" +%^c', + {OUT=>'WED DEC 8 07:30:00 1999'}], ); # Repeat the cross-dst test, using Jan 1, 2005 and every interval from 1..364. |