]> gcc.gnu.org Git - gcc.git/commitdiff
testsuite: Define _POSIX_C_SOURCE for test
authorTorbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Sun, 10 Mar 2024 17:18:51 +0000 (18:18 +0100)
committerTorbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Mon, 18 Mar 2024 07:29:47 +0000 (08:29 +0100)
As the tests assume that strndup() is visible (only part of
POSIX.1-2008) define the guard to ensure that it's visible.  Currently,
glibc appears to always have this defined in C++, newlib does not.

Without this patch, fails like this can be seen:

Testing analyzer/strndup-1.c,  -std=c++98
.../strndup-1.c: In function 'void test_1(const char*)':
.../strndup-1.c:11:13: error: 'strndup' was not declared in this scope; did you mean 'strncmp'?
.../strndup-1.c: In function 'void test_2(const char*)':
.../strndup-1.c:16:13: error: 'strndup' was not declared in this scope; did you mean 'strncmp'?
.../strndup-1.c: In function 'void test_3(const char*)':
.../strndup-1.c:21:13: error: 'strndup' was not declared in this scope; did you mean 'strncmp'?

Patch has been verified on Linux.

gcc/testsuite/ChangeLog:

* c-c++-common/analyzer/strndup-1.c: Define _POSIX_C_SOURCE.

Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
gcc/testsuite/c-c++-common/analyzer/strndup-1.c

index 85ccae85d832c7aa74394577a4f6f4928e08a5f4..577ece0cfbaaa31f95bdc2e4258d8be098343a70 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-skip-if "no strndup in libc" { *-*-darwin[789]* *-*-darwin10* hppa*-*-hpux* *-*-mingw* *-*-vxworks* } } */
+/* { dg-additional-options "-D_POSIX_C_SOURCE=200809L" } */
 
 #include <string.h>
 #include <stdlib.h>
This page took 0.066647 seconds and 5 git commands to generate.