From: Paul Eggert Date: Sat, 5 Oct 2002 04:50:45 +0000 (+0000) Subject: (Braces parsing): Use grep, not fgrep, as POSIX 1003.1-2001 has X-Git-Tag: BISON-1_75~69 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/a4bf0390a052ae8eed4b256048560df752a5a2b4 (Braces parsing): Use grep, not fgrep, as POSIX 1003.1-2001 has removed fgrep. --- diff --git a/tests/regression.at b/tests/regression.at index 13d3ab9e..e7da21b8 100644 --- a/tests/regression.at +++ b/tests/regression.at @@ -74,7 +74,7 @@ exp: { tests = {{{{{{{{{{}}}}}}}}}}; }; AT_CHECK([bison -v input.y -o input.c]) -AT_CHECK([fgrep 'tests = {{{{{{{{{{}}}}}}}}}};' input.c], 0, [ignore]) +AT_CHECK([grep 'tests = {{{{{{{{{{}}}}}}}}}};' input.c], 0, [ignore]) AT_CLEANUP