From: Akim Demaille Date: Thu, 25 Apr 2002 10:30:27 +0000 (+0000) Subject: * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space X-Git-Tag: BISON-1_49a~10 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/34a89c506630ce3e5aaee4259b110f7d61187438 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space between `!' and the command. Reported by Paul Eggert. --- diff --git a/ChangeLog b/ChangeLog index be8c74c3..405359b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-04-25 Akim Demaille + + * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space + between `!' and the command. + Reported by Paul Eggert. + 2002-04-24 Robert Anisko * tests/calc.at: Exercise prologue splitting. diff --git a/tests/sets.at b/tests/sets.at index 64402c20..e7f96930 100644 --- a/tests/sets.at +++ b/tests/sets.at @@ -29,25 +29,25 @@ m4_define([AT_EXTRACT_SETS], :null p n - /^[ ]*$/! b null + /^[ ]*$/ !b null } /^FIRSTS$/ { :firsts p n - /^[ ]*$/! b firsts + /^[ ]*$/ !b firsts } /^FDERIVES$/ { :fderiv p n - /^[ ]*$/! b fderiv + /^[ ]*$/ !b fderiv } /^DERIVES$/ { :deriv p n - /^[ ]*$/! b deriv + /^[ ]*$/ !b deriv } ]]) AT_CHECK([sed -f extract.sed $1], 0, [stdout])