busybox/testsuite/grep/grep-matches-NUL

9 lines
81 B
Plaintext

set +e
echo -e '\0' | busybox grep .
if [ $? != 0 ] ; then
exit 0;
fi
exit 1;