mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-07-23 11:30:33 +00:00
tests: skip tests of file names that platform does not support.
Reported by Michael Raskin at
<http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
* THANKS (Michael Raskin): Add.
* tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
to fail at least for file names containing ":" or "\".
(cherry picked from commit 2ceb8c617c)
Conflicts:
THANKS
This commit is contained in:
@@ -1,3 +1,12 @@
|
|||||||
|
2009-10-04 Joel E. Denny <[email protected]>
|
||||||
|
|
||||||
|
tests: skip tests of file names that platform does not support.
|
||||||
|
Reported by Michael Raskin at
|
||||||
|
<http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
|
||||||
|
* THANKS (Michael Raskin): Add.
|
||||||
|
* tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
|
||||||
|
to fail at least for file names containing ":" or "\".
|
||||||
|
|
||||||
2009-09-23 Joel E. Denny <[email protected]>
|
2009-09-23 Joel E. Denny <[email protected]>
|
||||||
|
|
||||||
yysyntax_error: avoid duplicate lookahead collection.
|
yysyntax_error: avoid duplicate lookahead collection.
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ Martin Nylin [email protected]
|
|||||||
Matt Kraai [email protected]
|
Matt Kraai [email protected]
|
||||||
Matt Rosing [email protected]
|
Matt Rosing [email protected]
|
||||||
Michael Hayes [email protected]
|
Michael Hayes [email protected]
|
||||||
|
Michael Raskin [email protected]
|
||||||
Michiel De Wilde [email protected]
|
Michiel De Wilde [email protected]
|
||||||
Mickael Labau [email protected]
|
Mickael Labau [email protected]
|
||||||
Mike Castle [email protected]
|
Mike Castle [email protected]
|
||||||
|
|||||||
@@ -175,6 +175,10 @@ AT_CHECK_CONFLICTING_OUTPUT([foo.y], [], [-o foo.y],
|
|||||||
m4_define([AT_CHECK_OUTPUT_FILE_NAME],
|
m4_define([AT_CHECK_OUTPUT_FILE_NAME],
|
||||||
[AT_SETUP([Output file name: $1])
|
[AT_SETUP([Output file name: $1])
|
||||||
|
|
||||||
|
# Skip if platform doesn't support file name. For example, Cygwin
|
||||||
|
# doesn't support file names containing ":" or "\".
|
||||||
|
AT_CHECK([[touch "]AS_ESCAPE([$1[.tmp]])[" || exit 77]])
|
||||||
|
|
||||||
AT_DATA_GRAMMAR([glr.y],
|
AT_DATA_GRAMMAR([glr.y],
|
||||||
[[%glr-parser
|
[[%glr-parser
|
||||||
%code {
|
%code {
|
||||||
|
|||||||
Reference in New Issue
Block a user