tests: avoid a "grep -E" portability issue
commitf3d6ca85d3fc962b77d2e0fbe06cab253394a110
authorStefano Lattarini <stefano.lattarini@gmail.com>
Tue, 18 Dec 2012 10:46:40 +0000 (18 11:46 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Tue, 18 Dec 2012 13:47:29 +0000 (18 14:47 +0100)
tree063a3e47fb13be31146c7e093225bd13e2854dcc
parenta1f9336b9dee4dcb97dd8488f22b1bc684f956f9
tests: avoid a "grep -E" portability issue

As stated in the Autoconf manual, the empty alternative is not portable
with "grep -E".  For example, while with GNU grep we have:

    $ echo b | grep -E '(|a)b'; echo status = $?
    b
    status = 0

with Solaris 10 /usr/xpg4/bin/grep we have:

    $ echo b | grep -E '(|a)b'; echo status = $?
    1
    status = 1

* t/silent-texi.sh: That was causing a spurious failure here.  Fix it
by simply using '?' instead (as suggested by the Autoconf manual).

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
t/silent-texi.sh