Blame tests/bre

Packit 709fb3
#! /bin/sh
Packit 709fb3
# Regression test for GNU grep.
Packit 709fb3
#
Packit 709fb3
# Copyright (C) 2001, 2006, 2009-2017 Free Software Foundation, Inc.
Packit 709fb3
#
Packit 709fb3
# Copying and distribution of this file, with or without modification,
Packit 709fb3
# are permitted in any medium without royalty provided the copyright
Packit 709fb3
# notice and this notice are preserved.
Packit 709fb3
Packit 709fb3
. "${srcdir=.}/init.sh"; path_prepend_ ../src
Packit 709fb3
Packit 709fb3
fail=0
Packit 709fb3
Packit 709fb3
# . . . and the following by Henry Spencer.
Packit 709fb3
Packit 709fb3
${AWK-awk} -f $abs_top_srcdir/tests/bre.awk $abs_top_srcdir/tests/bre.tests \
Packit 709fb3
    > bre.script || fail=1
Packit 709fb3
Packit 709fb3
${re_shell-${SHELL-sh}} ./bre.script || fail=1
Packit 709fb3
Packit 709fb3
Exit $fail