blob: 0621a319f701c2b304c005bd36363bc27be344d3 [file] [log] [blame]
Glenn L McGrath2570b432003-09-16 05:25:43 +00001# This will fail if CONFIG_FEATURE_SED_GNU_COMPATABILITY is defined
2busybox sed 'N;p'>output <<EOF
Glenn L McGrath65f9dc02003-09-15 05:35:47 +00003a
4b
5c
6EOF
Eric Andersen650fe632004-04-06 11:10:30 +00007
8set +e
Glenn L McGrath65f9dc02003-09-15 05:35:47 +00009cmp -s output - <<EOF
10a
11b
Glenn L McGrath2570b432003-09-16 05:25:43 +000012a
13b
14c
Glenn L McGrath65f9dc02003-09-15 05:35:47 +000015EOF
Eric Andersen650fe632004-04-06 11:10:30 +000016if [ $? != 0 ] ; then
17 exit 0;
18fi
19exit 1;