aboutsummaryrefslogtreecommitdiff
path: root/testsuite/expand.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-07-05 21:37:12 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-07-05 21:37:12 +0200
commit9297dbc9d285e823af59c443e0123cb99577569a (patch)
tree134bb16eaaa4f0a7148aed3a78c7c797108e6568 /testsuite/expand.tests
parent08f0b784fd4351929090c877605762d664e70098 (diff)
downloadbusybox-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-xtestsuite/expand.tests7
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
6test -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
15optional UNICODE_SUPPORT 16test x"$CONFIG_UNICODE_SUPPORT" = x"y" \
17&& test x"$CONFIG_UNICODE_USING_LOCALE" != x"y" \
18&& test "$CONFIG_LAST_SUPPORTED_WCHAR" -gt "916" \
16testing "expand with unicode characher 0x394" \ 19testing "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"
21SKIP=
22
23 24
24exit $FAILCOUNT 25exit $FAILCOUNT