]> git.saurik.com Git - bison.git/commitdiff
tests: fix sed portability issues
authorAkim Demaille <akim@lrde.epita.fr>
Fri, 5 Oct 2012 07:20:30 +0000 (09:20 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Fri, 5 Oct 2012 07:34:16 +0000 (09:34 +0200)
Reported by Didier Godefroy,
<http://lists.gnu.org/archive/html/bug-bison/2012-10/msg00005.html>.

* tests/calc.at (AT_CHECK_SPACES): Use Perl.

tests/calc.at

index 3aab86815dbe9da34e4d14d1530010c8a52fcbb3..a1c11e5f561073b02e7d342d88b364e93554d7a0 100644 (file)
@@ -503,12 +503,15 @@ AT_CHECK([cat stderr], 0, [expout])
 # Make sure we did not introduce bad spaces.  Checked here because all
 # the skeletons are (or should be) exercized here.
 m4_define([AT_CHECK_SPACES],
-[# No initial empty lines.
-AT_CHECK([sed -ne '/./q;=;p;' $1])
-# No trailing spaces.
-# FIXME: For 2.7: AT_CHECK([sed -ne '/[ ]$/{=;p;}' $1])
-# No final empty lines.
-AT_CHECK([sed -ne '${/^$/{=;p;};}' $1])
+[AT_CHECK([perl -ne '
+  chomp;
+  print "$.: {$_}\n"
+    if (# No starting/ending empty lines.
+        (eof || $. == 1) && /^\s*$/
+        # No trailing space.  FIXME: not ready for "maint".
+        # || /\s$/
+        )' $1
+])dnl
 ])