-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: Skip bison tests if bison is not available #145
Conversation
0e218b7
to
ed272ac
Compare
Would you put the README change on a separate pr, please. It is not related to the bison changes. |
ed272ac
to
bfd28d9
Compare
Update: the tests/README change is on separate pull request now: #148 |
bfd28d9
to
af675d0
Compare
There's conflicts now. Would you fix that and push the update? Go ahead and squash/fixup the history as appropriate, too. |
AC_PROG_YACC already detects the bison program. We can just use it, and make notice if [ $YACC != 'bison -y' ] Remove unused AC_SUBST([BISON], ...). Add AM_CONDITIONAL([HAVE_BISON], ...) so that we can skip bison tests in testsuite.
af675d0
to
4c124da
Compare
You need to add the no_bison_stub.c. |
4c124da
to
12c3fda
Compare
Rebased and added no_bison_stub.c. (And would you please be patient and wait a bit before I say it's okay? I was tweaking the no_bison_stub.c when I discovered that it's not included in the commit just now.) |
You bet, just holler when.
…On Tuesday, 24 January 2017, 5:34 pm -0800, "Kang-Che Sung (宋岡哲)" ***@***.***> wrote:
Rebased and added no_bison_stub.c. (And would you please be patient and wait a bit before I say it's okay? I was tweaking the no_bison_stub.c when I discovered that it's not included in the commit just now.)
--
You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#145 (comment)
--
Will Estes
[email protected]
|
It's ready to pull now. |
Thanks. This is on master and will be included in the next release. |
This pull request depends on #144
Resolves #49, except that this configure script is not tolerant on other yacc implementations (byacc, for example). If someone wants byacc for building flex and/or the testsuite, just tweak the code then.