From 28ef1abc10cfbc2c3d2747c008eb2300858d0426 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Fri, 22 Apr 2016 04:38:07 +0000 Subject: grep-2.25 --- tests/options | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 tests/options (limited to 'tests/options') diff --git a/tests/options b/tests/options new file mode 100755 index 0000000..97d2a03 --- /dev/null +++ b/tests/options @@ -0,0 +1,49 @@ +#! /bin/sh +# Test for POSIX options for grep +# +# Copyright (C) 2001, 2006, 2009-2016 Free Software Foundation, Inc. +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. +# +# grep [ -E| -F][ -c| -l| -q ][-insvx] -e pattern_list +# [-f pattern_file] ... [file. ..] +# grep [ -E| -F][ -c| -l| -q ][-insvx][-e pattern_list] +# -f pattern_file ... [file ...] +# grep [ -E| -F][ -c| -l| -q ][-insvx] pattern_list [file...] + +. "${srcdir=.}/init.sh"; path_prepend_ ../src + +fail=0 + +# checking for -E extended regex +echo "abababccccccd" | grep -E -e 'c{3}' > /dev/null 2>&1 +if test $? -ne 0 ; then + echo "Options: Wrong status code, test #1 failed" + fail=1 +fi + +# checking for basic regex +echo "abababccccccd" | grep -G -e 'c\{3\}' > /dev/null 2>&1 +if test $? -ne 0 ; then + echo "Options: Wrong status code, test #2 failed" + fail=1 +fi + +# checking for fixed string +echo "abababccccccd" | grep -F -e 'c\{3\}' > /dev/null 2>&1 +if test $? -ne 1 ; then + echo "Options: Wrong status code, test #3 failed" + fail=1 +fi + +# checking for multiple -e options; see: +# http://bugs.gnu.org/21670 +echo abchelloabc | grep -e '^hello' -e 'hello$' > /dev/null 2>&1 +if test $? -ne 1 ; then + echo "Options: Wrong status code, test #4 failed" + fail=1 +fi + +Exit $fail -- cgit v1.2.1