blob: b0278d88d90702ef7bac3554d18c2a73e8e79480 [file] [log] [blame]
Denys Vlasenkoe3d90a92010-05-10 05:53:16 +02001# FEATURE: CONFIG_UNEXPAND
2
Denis Vlasenko3952f202007-08-13 14:10:24 +00003rm -f foo bar
Denys Vlasenkoe82cf332010-05-12 15:59:32 +02004$ECHO -e "\ty" | expand -t 3 ../../busybox > foo
5$ECHO -e "\ty" | busybox unexpand -t 3 ../../busybox > bar
Denis Vlasenko3952f202007-08-13 14:10:24 +00006set +e
7test ! -f foo -a -f bar
8if [ $? = 0 ] ; then
9 set -e
10 diff -q foo bar
11fi
12rm -f foo bar
Denys Vlasenkoe82cf332010-05-12 15:59:32 +020013$ECHO -e "\ty\tx" | expand -it 3 ../../busybox > foo
14$ECHO -e "\ty\tx" | busybox unexpand -it 3 ../../busybox > bar
Denis Vlasenko3952f202007-08-13 14:10:24 +000015set +e
16test ! -f foo -a -f bar
17if [ $? = 0 ] ; then
18 set -e
19 diff -q foo bar
20fi