aboutsummaryrefslogtreecommitdiff
path: root/testsuite/expand
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-06-08 13:04:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-06-08 13:04:44 +0200
commit92549250f36f91f4492c296bb227cfca83d5c4fe (patch)
tree8b93d86151eff8f21e14cdb046f988dafd161437 /testsuite/expand
parent22cc92833f98450f37a2e82e4a6a36c418b4cc67 (diff)
downloadbusybox-w32-92549250f36f91f4492c296bb227cfca83d5c4fe.tar.gz
busybox-w32-92549250f36f91f4492c296bb227cfca83d5c4fe.tar.bz2
busybox-w32-92549250f36f91f4492c296bb227cfca83d5c4fe.zip
expand,unexpand: drop broken test, add FIXME comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/expand')
-rw-r--r--testsuite/expand/expand-works-like-GNU20
1 files changed, 0 insertions, 20 deletions
diff --git a/testsuite/expand/expand-works-like-GNU b/testsuite/expand/expand-works-like-GNU
deleted file mode 100644
index b0278d88d..000000000
--- a/testsuite/expand/expand-works-like-GNU
+++ /dev/null
@@ -1,20 +0,0 @@
1# FEATURE: CONFIG_UNEXPAND
2
3rm -f foo bar
4$ECHO -e "\ty" | expand -t 3 ../../busybox > foo
5$ECHO -e "\ty" | busybox unexpand -t 3 ../../busybox > bar
6set +e
7test ! -f foo -a -f bar
8if [ $? = 0 ] ; then
9 set -e
10 diff -q foo bar
11fi
12rm -f foo bar
13$ECHO -e "\ty\tx" | expand -it 3 ../../busybox > foo
14$ECHO -e "\ty\tx" | busybox unexpand -it 3 ../../busybox > bar
15set +e
16test ! -f foo -a -f bar
17if [ $? = 0 ] ; then
18 set -e
19 diff -q foo bar
20fi