aboutsummaryrefslogtreecommitdiff
path: root/testsuite/grep/grep-matches-NUL
blob: 082bd8700356b2f85798ddd85fe36aff18dc007e (plain)
1
2
3
4
5
6
7
8
set +e
echo -e '\0' | busybox grep .
if [ $? != 0 ] ; then
	exit 0;
fi

exit 1;