Denys Vlasenko | ed910c7 | 2010-01-31 00:10:18 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Copyright 2010 by Denys Vlasenko |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | # Licensed under GPLv2, see file LICENSE in this source tree. |
Denys Vlasenko | ed910c7 | 2010-01-31 00:10:18 +0100 | [diff] [blame] | 4 | |
| 5 | . ./testing.sh |
Denys Vlasenko | ed910c7 | 2010-01-31 00:10:18 +0100 | [diff] [blame] | 6 | test -f "$bindir/.config" && . "$bindir/.config" |
| 7 | |
| 8 | # testing "test name" "command" "expected result" "file input" "stdin" |
| 9 | |
| 10 | testing "cal 2000" "cal 1 2000" "\ |
| 11 | January 2000 |
| 12 | Su Mo Tu We Th Fr Sa |
| 13 | 1 |
| 14 | 2 3 4 5 6 7 8 |
| 15 | 9 10 11 12 13 14 15 |
| 16 | 16 17 18 19 20 21 22 |
| 17 | 23 24 25 26 27 28 29 |
| 18 | 30 31 |
| 19 | " "" "" |
| 20 | |
| 21 | test x"$CONFIG_LOCALE_SUPPORT" = x"y" \ |
Denys Vlasenko | 19158a8 | 2010-03-26 14:06:56 +0100 | [diff] [blame] | 22 | && test x"$CONFIG_UNICODE_SUPPORT" = x"y" \ |
Denys Vlasenko | ed910c7 | 2010-01-31 00:10:18 +0100 | [diff] [blame] | 23 | && test x"$CONFIG_LAST_SUPPORTED_WCHAR" = x"0" \ |
| 24 | && test x"$CONFIG_UNICODE_WIDE_WCHARS" = x"y" \ |
| 25 | && test x"$CONFIG_STATIC" != x"y" \ |
| 26 | && test x"$CONFIG_CROSS_COMPILER_PREFIX" = x"" \ |
| 27 | && testing "unicode cal 2000" "LANG=zh_TW.utf8 cal 1 2000" "\ |
| 28 | 一月 2000 |
| 29 | 日 一 二 三 四 五 六 |
| 30 | 1 |
| 31 | 2 3 4 5 6 7 8 |
| 32 | 9 10 11 12 13 14 15 |
| 33 | 16 17 18 19 20 21 22 |
| 34 | 23 24 25 26 27 28 29 |
| 35 | 30 31 |
| 36 | " "" "" |
| 37 | |
| 38 | exit $FAILCOUNT |