summaryrefslogtreecommitdiff
path: root/t/lex-multiple.sh
Commit message (Collapse)AuthorAgeFilesLines
* tests: fix a spurious failure with FreeBSD makeStefano Lattarini2013-05-191-1/+1
| | | | | | | | | Failures due to known VPATH support issues in that make implementation (the same issues that have been causing the long-standing bug#7884). * t/lex-multiple.sh: Adjust. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
* tests: remove remaining exec bits ('maint' branch)Stefano Lattarini2013-05-161-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The executable bit gives the impression that the tests are directly runnable, as with "./t/foo.sh", but it has been a while since that was the case. Today, tests are runnable only through "make check" or "./runtest". This change is for the 'maint' branch (automake 1.13a), and is a follow-up to commit 'v1.13.2-3-g74017b5', done on the 'micro' branch (automake 1.13.2a). It will soon be followed by a similar patch for the 'master' branch (automake 1.99a). * t/am-prog-cc-c-o.sh: Remove executable bit. * t/ccnoco4.sh: Likewise. * t/dist-shar.sh: Likewise. * t/dist-tarZ.sh: Likewise. * t/lex-multiple.sh: Likewise. * t/preproc-basics.sh: Likewise. * t/preproc-c-compile.sh: Likewise. * t/preproc-demo.sh: Likewise. * t/preproc-errmsg.sh: Likewise. * t/rm-f-probe.sh: Likewise. * t/self-check-cc-no-c-o.sh: Likewise. * t/txinfo-builddir.sh: Likewise. * t/txinfo-nodist-info.sh: Likewise. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
* maint: re-run "make update-copyright" ...Stefano Lattarini2013-05-091-1/+1
| | | | | | | * t/lex-multiple.sh: ... which updates the copyright years of this test (they were somehow not bumped in the past). Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
* tests: avoid spurious failure with older flex (2.5.4)Stefano Lattarini2013-05-091-2/+2
| | | | | | | | | | | That old version is unfortunately still relevant, being the one installed on NetBSD 5.1. * t/lex-multiple.sh: Use the '-o' option rather than the longer equivalent '--outfile'. The latter is not supported by older versions of flex (e.g., flex 2.5.4). Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
* coverage: using multiple lexers in a single programStefano Lattarini2013-01-121-0/+107
Using Flex and Automake built-in support for lex, that is possible. A little tricky, but not difficult. See: <http://lists.gnu.org/archive/html/automake/2010-10/msg00081.html> <http://lists.gnu.org/archive/html/automake/2009-03/msg00061.html> * t/lex-multiple.sh: New test. * t/list-of-tests.mk: Add it. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>