• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#! /bin/sh
2. "${srcdir=.}/init.sh"; path_prepend_ . ../src
3
4# Verify that $ as end-of-line anchor does not cause a crash.
5# <https://bugzilla.redhat.com/show_bug.cgi?id=483181>
6# <https://savannah.gnu.org/bugs/?25437>
7
8: ${MSGGREP=msggrep}
9echo a=b | LC_MESSAGES=C LC_ALL= ${MSGGREP} -P -K -e '^a$' > /dev/null || Exit 1
10
11exit $result
12