From: Vaclav Dolezal Date: Thu, 11 Jan 2018 10:11:31 +0000 (+0100) Subject: tests: mbsencode - test for HAVE_WIDECHAR X-Git-Tag: v2.32-rc1~99^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8326119ad1976c42275af848688e57f0100ffa82;p=thirdparty%2Futil-linux.git tests: mbsencode - test for HAVE_WIDECHAR Test only safe-ascii as it should behave in the same way. Signed-off-by: Vaclav Dolezal --- diff --git a/tests/ts/misc/mbsencode b/tests/ts/misc/mbsencode index 8ebf73f46c..b483a53d1f 100755 --- a/tests/ts/misc/mbsencode +++ b/tests/ts/misc/mbsencode @@ -40,23 +40,41 @@ STRINGS=( $'\xe8\xe1\xf9\xa7' ) +if grep -q '^#define HAVE_WIDECHAR' ${top_builddir}/config.h ;then + HAVE_WIDECHAR=true +else + HAVE_WIDECHAR=false +fi + ts_init_subtest "safe-ascii" $TS_HELPER_MBSENCODE --safe "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 ts_finalize_subtest ts_init_subtest "invalid-ascii" -$TS_HELPER_MBSENCODE --invalid "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 -ts_finalize_subtest +if [ "$HAVE_WIDECHAR" = true ]; then + $TS_HELPER_MBSENCODE --invalid "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 + ts_finalize_subtest +else + ts_skip_subtest 'No widechar support' +fi ts_init_subtest "safe-utf8" -LC_ALL=C.UTF-8 \ -$TS_HELPER_MBSENCODE --safe "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 -ts_finalize_subtest +if [ "$HAVE_WIDECHAR" = true ]; then + LC_ALL=C.UTF-8 \ + $TS_HELPER_MBSENCODE --safe "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 + ts_finalize_subtest +else + ts_skip_subtest 'No widechar support' +fi ts_init_subtest "invalid-utf8" -LC_ALL=C.UTF-8 \ -$TS_HELPER_MBSENCODE --invalid "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 -ts_finalize_subtest +if [ "$HAVE_WIDECHAR" = true ]; then + LC_ALL=C.UTF-8 \ + $TS_HELPER_MBSENCODE --invalid "${STRINGS[@]}" >> $TS_OUTPUT 2>&1 + ts_finalize_subtest +else + ts_skip_subtest 'No widechar support' +fi ts_finalize