aboutsummaryrefslogtreecommitdiff
path: root/testsuite/sed/sed-append-next-line
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/sed/sed-append-next-line')
-rw-r--r--testsuite/sed/sed-append-next-line7
1 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/sed/sed-append-next-line b/testsuite/sed/sed-append-next-line
index e7f72f476..0621a319f 100644
--- a/testsuite/sed/sed-append-next-line
+++ b/testsuite/sed/sed-append-next-line
@@ -1,10 +1,11 @@
1# XFAIL
2# This will fail if CONFIG_FEATURE_SED_GNU_COMPATABILITY is defined 1# This will fail if CONFIG_FEATURE_SED_GNU_COMPATABILITY is defined
3busybox sed 'N;p'>output <<EOF 2busybox sed 'N;p'>output <<EOF
4a 3a
5b 4b
6c 5c
7EOF 6EOF
7
8set +e
8cmp -s output - <<EOF 9cmp -s output - <<EOF
9a 10a
10b 11b
@@ -12,3 +13,7 @@ a
12b 13b
13c 14c
14EOF 15EOF
16if [ $? != 0 ] ; then
17 exit 0;
18fi
19exit 1;