diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-12-17 18:35:44 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-12-17 18:49:27 +0530 |
commit | 2bbd07c715275eb6c616988925738a0517180d57 (patch) | |
tree | 74a7b45044d12f1f5b5b8aab16e1f9c6fad6bc23 /debug/Makefile | |
parent | b99b0f93ee8762fe53ff65802deb6f00700b9924 (diff) | |
download | glibc-2bbd07c715275eb6c616988925738a0517180d57.tar glibc-2bbd07c715275eb6c616988925738a0517180d57.tar.gz glibc-2bbd07c715275eb6c616988925738a0517180d57.tar.bz2 glibc-2bbd07c715275eb6c616988925738a0517180d57.zip |
fortify: Fix spurious warning with realpath
The length and object size arguments were swapped around for realpath.
Also add a smoke test so that any changes in this area get caught in
future.
Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'debug/Makefile')
-rw-r--r-- | debug/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debug/Makefile b/debug/Makefile index 357f888246..bc37e466ee 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -108,6 +108,7 @@ CFLAGS-tst-longjmp_chk2.c += -fexceptions -fasynchronous-unwind-tables CPPFLAGS-tst-longjmp_chk2.c += -D_FORTIFY_SOURCE=1 CFLAGS-tst-longjmp_chk3.c += -fexceptions -fasynchronous-unwind-tables CPPFLAGS-tst-longjmp_chk3.c += -D_FORTIFY_SOURCE=1 +CPPFLAGS-tst-realpath-chk.c += -D_FORTIFY_SOURCE=2 # We know these tests have problems with format strings, this is what # we are testing. Disable that warning. They are also testing @@ -155,7 +156,7 @@ tests = backtrace-tst tst-longjmp_chk tst-chk1 tst-chk2 tst-chk3 \ tst-lfschk1 tst-lfschk2 tst-lfschk3 test-strcpy_chk test-stpcpy_chk \ tst-chk4 tst-chk5 tst-chk6 tst-chk7 tst-chk8 tst-lfschk4 tst-lfschk5 \ tst-lfschk6 tst-longjmp_chk2 tst-backtrace2 tst-backtrace3 \ - tst-backtrace4 tst-backtrace5 tst-backtrace6 + tst-backtrace4 tst-backtrace5 tst-backtrace6 tst-realpath-chk ifeq ($(have-ssp),yes) tests += tst-ssp-1 |