Pacify make maintainer-check-posix.

* tests/input.at (%define, --define): Move bison command-line
options before grammar file name.
This commit is contained in:
Joel E. Denny
2009-04-17 16:14:17 -04:00
parent a2d0567444
commit 4266073618
2 changed files with 14 additions and 8 deletions

View File

@@ -1,3 +1,9 @@
2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
Pacify make maintainer-check-posix.
* tests/input.at (%define, --define): Move bison command-line
options before grammar file name.
2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu> 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
Document semicolon warnings. Document semicolon warnings.

View File

@@ -1,6 +1,6 @@
# Checking the Bison scanner. -*- Autotest -*- # Checking the Bison scanner. -*- Autotest -*-
# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
# Inc. # Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@@ -834,14 +834,14 @@ AT_DATA([input.y],
start: ; start: ;
]]) ]])
AT_BISON_CHECK([[input.y -DFOO -DFOO -Dvar=value]], [0], [], AT_BISON_CHECK([[-DFOO -DFOO -Dvar=value input.y]], [0], [],
[[<command line>:4: warning: %define variable `FOO' redefined [[<command line>:3: warning: %define variable `FOO' redefined
<command line>:3: warning: previous definition <command line>:2: warning: previous definition
input.y:1.9-11: warning: %define variable `var' redefined input.y:1.9-11: warning: %define variable `var' redefined
<command line>:5: warning: previous definition <command line>:4: warning: previous definition
<command line>:2: warning: %define variable `FOO' is not used
<command line>:3: warning: %define variable `FOO' is not used <command line>:3: warning: %define variable `FOO' is not used
<command line>:4: warning: %define variable `FOO' is not used <command line>:4: warning: %define variable `var' is not used
<command line>:5: warning: %define variable `var' is not used
input.y:1.9-11: warning: %define variable `var' is not used input.y:1.9-11: warning: %define variable `var' is not used
]]) ]])