blob: 0682c295042f1ae3e3d165d79901a53555a8f418 [file] [log] [blame]
Denis Vlasenko3139ea72008-12-14 15:45:25 +00001#!/bin/sh
2# Copyright 2008 by Denys Vlasenko
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003# Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko3139ea72008-12-14 15:45:25 +00004
Mike Frysingercaa79402009-11-04 18:41:22 -05005. ./testing.sh
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02006test -f "$bindir/.config" && . "$bindir/.config"
Denis Vlasenko3139ea72008-12-14 15:45:25 +00007
8# testing "test name" "options" "expected result" "file input" "stdin"
9
10testing "expand" \
11 "expand" \
12 " 12345678 12345678\n" \
13 "" \
Denys Vlasenkoe3d90a92010-05-10 05:53:16 +020014 "\t12345678\t12345678\n"
Denis Vlasenko3139ea72008-12-14 15:45:25 +000015
Denys Vlasenko9297dbc2010-07-05 21:37:12 +020016test x"$CONFIG_UNICODE_SUPPORT" = x"y" \
17&& test x"$CONFIG_UNICODE_USING_LOCALE" != x"y" \
Denys Vlasenkoee1f19b2010-07-06 02:20:00 +020018&& testing "expand with unicode characher 0x394" \
Tomas Heinrichd2b1ba62010-01-04 16:21:31 +010019 "expand" \
20 "Δ 12345ΔΔΔ 12345678\n" \
21 "" \
Denys Vlasenkoe3d90a92010-05-10 05:53:16 +020022 "Δ\t12345ΔΔΔ\t12345678\n"
Tomas Heinrichd2b1ba62010-01-04 16:21:31 +010023
Denis Vlasenko3139ea72008-12-14 15:45:25 +000024exit $FAILCOUNT