From: Mike Frysinger Date: Sun, 20 Feb 2022 19:28:11 +0000 (-0500) Subject: tests: fix yacc C++ tests with some C++ compilers X-Git-Tag: v1.16i~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13ae585a0184a4c0113fd4f3a19a0cedf1cfe5c2;p=thirdparty%2Fautomake.git tests: fix yacc C++ tests with some C++ compilers Fixes automake bug https://bugs.gnu.org/20031. The C++ standard does not require symbols be placed into the global namespace, just in the std namespace. The GNU implementation will place symbols in both. For our specific code, we don't care either. Unfortunately, it looks like generated flex code assumes that some stdlib.h symbols (free, malloc, exit) are in the global namespace, even when compiling for C++. So when we include but not , we might not get the symbols in the global namespace. We can workaround this by including stdlib.h in these tests without invalidating the point of the tests in general. * t/yacc-cxx.sh: Include stdlib.h. * t/yacc-d-cxx.sh: Likewise. * t/yacc-mix-c-cxx.sh: Likewise. --- diff --git a/t/yacc-cxx.sh b/t/yacc-cxx.sh index 9dd9aabf7..33e73cbc0 100644 --- a/t/yacc-cxx.sh +++ b/t/yacc-cxx.sh @@ -43,6 +43,9 @@ END cat > parse1.yy << 'END' %{ +// Include C header to provide global symbols that flex assumes. +// https://bugs.gnu.org/20031 +#include // Valid C++, but deliberately invalid C. #include #include diff --git a/t/yacc-d-cxx.sh b/t/yacc-d-cxx.sh index ce7a9b123..b6390a67a 100644 --- a/t/yacc-d-cxx.sh +++ b/t/yacc-d-cxx.sh @@ -26,6 +26,9 @@ write_parse () header=$1 unindent < // Valid C++, but deliberately invalid C. #include #include "$header" diff --git a/t/yacc-mix-c-cxx.sh b/t/yacc-mix-c-cxx.sh index eb02d4cd5..475a8e9f5 100644 --- a/t/yacc-mix-c-cxx.sh +++ b/t/yacc-mix-c-cxx.sh @@ -82,6 +82,10 @@ END cat > parse.yy <<'END' %{ +// Include C header to provide global symbols that flex assumes. +// https://bugs.gnu.org/20031 +#include +// Valid C++, but deliberately invalid C. #include #include "parse.hh" int yylex (void) { return 0; }