blob: 9ca91c2ee37dcc653aa3a6f0ccf7f7c9f54d08a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
# Verify that $ as end-of-line anchor does not cause a crash.
# <https://bugzilla.redhat.com/show_bug.cgi?id=483181>
# <https://savannah.gnu.org/bugs/?25437>
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
: ${MSGGREP=msggrep}
echo a=b | LC_MESSAGES=C LC_ALL= ${MSGGREP} -P -K -e '^a$' > /dev/null
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
rm -fr $tmpfiles
exit $result
|