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