diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-05 21:37:12 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-05 21:37:12 +0200 |
commit | 9297dbc9d285e823af59c443e0123cb99577569a (patch) | |
tree | 134bb16eaaa4f0a7148aed3a78c7c797108e6568 /testsuite/expand.tests | |
parent | 08f0b784fd4351929090c877605762d664e70098 (diff) | |
download | busybox-w32-9297dbc9d285e823af59c443e0123cb99577569a.tar.gz busybox-w32-9297dbc9d285e823af59c443e0123cb99577569a.tar.bz2 busybox-w32-9297dbc9d285e823af59c443e0123cb99577569a.zip |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/expand.tests')
-rwxr-xr-x | testsuite/expand.tests | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/expand.tests b/testsuite/expand.tests index 357a9ad6b..2d92344d4 100755 --- a/testsuite/expand.tests +++ b/testsuite/expand.tests | |||
@@ -3,6 +3,7 @@ | |||
3 | # Licensed under GPL v2, see file LICENSE for details. | 3 | # Licensed under GPL v2, see file LICENSE for details. |
4 | 4 | ||
5 | . ./testing.sh | 5 | . ./testing.sh |
6 | test -f "$bindir/.config" && . "$bindir/.config" | ||
6 | 7 | ||
7 | # testing "test name" "options" "expected result" "file input" "stdin" | 8 | # testing "test name" "options" "expected result" "file input" "stdin" |
8 | 9 | ||
@@ -12,13 +13,13 @@ testing "expand" \ | |||
12 | "" \ | 13 | "" \ |
13 | "\t12345678\t12345678\n" | 14 | "\t12345678\t12345678\n" |
14 | 15 | ||
15 | optional UNICODE_SUPPORT | 16 | test x"$CONFIG_UNICODE_SUPPORT" = x"y" \ |
17 | && test x"$CONFIG_UNICODE_USING_LOCALE" != x"y" \ | ||
18 | && test "$CONFIG_LAST_SUPPORTED_WCHAR" -gt "916" \ | ||
16 | testing "expand with unicode characher 0x394" \ | 19 | testing "expand with unicode characher 0x394" \ |
17 | "expand" \ | 20 | "expand" \ |
18 | "Δ 12345ΔΔΔ 12345678\n" \ | 21 | "Δ 12345ΔΔΔ 12345678\n" \ |
19 | "" \ | 22 | "" \ |
20 | "Δ\t12345ΔΔΔ\t12345678\n" | 23 | "Δ\t12345ΔΔΔ\t12345678\n" |
21 | SKIP= | ||
22 | |||
23 | 24 | ||
24 | exit $FAILCOUNT | 25 | exit $FAILCOUNT |