S390: Move utf8-utf32-z9.c to multiarch folder and use s390_libc_ifunc_expr macro.
[glibc.git] / math / test-fexcept-traps.c
blob5bd9a52e27468689aa4869ba2b221a4b1216f56c
1 /* Test fegetexceptflag and fesetexceptflag: exception traps enabled.
2 Copyright (C) 2016-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <fenv.h>
20 #include <stdio.h>
21 #include <math-tests.h>
23 static int
24 do_test (void)
26 int result = 0;
28 fedisableexcept (FE_ALL_EXCEPT);
29 int ret = feraiseexcept (FE_ALL_EXCEPT);
30 if (ret != 0)
32 if (EXCEPTION_TESTS (float))
34 puts ("feraiseexcept (FE_ALL_EXCEPT) failed");
35 result = 1;
36 return result;
38 else
40 puts ("feraiseexcept (FE_ALL_EXCEPT) unsupported, cannot test");
41 return 77;
44 fexcept_t saved;
45 ret = fegetexceptflag (&saved, FE_ALL_EXCEPT);
46 if (ret != 0)
48 puts ("fegetexceptflag failed");
49 result = 1;
50 return result;
52 feclearexcept (FE_ALL_EXCEPT);
54 ret = feenableexcept (FE_ALL_EXCEPT);
55 if (!EXCEPTION_ENABLE_SUPPORTED (FE_ALL_EXCEPT) && (ret == -1))
57 puts ("feenableexcept (FE_ALL_EXCEPT) not supported, cannot test");
58 return 77;
60 else if (ret != 0)
62 puts ("feenableexcept (FE_ALL_EXCEPT) failed");
63 result = 1;
66 if (EXCEPTION_SET_FORCES_TRAP)
68 puts ("setting exceptions traps, cannot test on this architecture");
69 return 77;
71 /* The test is that this does not cause exception traps. */
72 ret = fesetexceptflag (&saved, FE_ALL_EXCEPT);
73 if (ret != 0)
75 puts ("fesetexceptflag failed");
76 result = 1;
78 feclearexcept (FE_ALL_EXCEPT);
80 return result;
83 #define TEST_FUNCTION do_test ()
84 #include "../test-skeleton.c"