summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/setjmp-fpu/setjmp-fpu.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Like ARM, RISC-V does not implement floating point exceptions.kettenis2021-06-171-2/+2
|
* Skip floating-point exception checks on arm64 and armv7 as the hardwarekettenis2020-10-191-1/+3
| | | | | | (typically) doesn't implement support for these. ok patrick@, drahn@
* Check fpu functions without setjmp/longjmp before testing the latter.bluhm2020-01-161-10/+11
| | | | | Use exit code 2 for setup failure and 1 for test fail. Unfortunately this regress is still failing.
* Split setjmp-fpu regress into separate tests. Use errx(3) to explainbluhm2020-01-131-14/+30
| | | | potential problems. Regress still failing on amd64.
* Make sure we use a sigjmp_buf in the sigsetjmp() part of the test.miod2015-11-081-1/+1
|
* - Verify that the FPU exception flags weren't clobbered as required by C99.martynas2013-12-291-8/+20
| | | | - Additionally, test _setjmp and sigsetjmp as implementations are different.
* Add a regression test to verify that the FPU control word state ismartynas2013-12-291-0/+34
preserved by setjmp. Currently under REGRESS_FULL as this fails on certain archs.