about summary refs log tree commit diff
path: root/debug/tst-longjmp_chk.c
Commit message (Collapse)AuthorAgeFilesLines
* debug: Adapt fortify tests to libsupportAdhemerval Zanella2023-12-291-5/+3
| | | | | Checked on aarch64, armhf, x86_64, and i686. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
* tests: unify fortification handler logicMike Frysinger2014-02-081-20/+7
| | | | | | | We have multiple tests that copy & paste the same logic for disabling the fortification output. Let's unify this in the test-skeleton instead. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* tst-longjmp_chk: add comments and convert to test-skeletonMike Frysinger2014-02-081-2/+7
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Check for valid stack frame in longjmp.Ulrich Drepper2009-05-151-0/+86
If longjmp restores the stack frame to an address which is beyond the stack frame at the time of the longjmp call it would install an uninitialized stack frame. If compiled with _FORTIFY_SOURCE defined, longjmp will now bail out in this situation.