diff options
| author | Joseph Myers <josmyers@redhat.com> | 2024-12-05 21:42:10 +0000 |
|---|---|---|
| committer | Joseph Myers <josmyers@redhat.com> | 2024-12-05 21:42:10 +0000 |
| commit | f9e90e4b4ce71f88470c8c8b0a16c21088294be4 (patch) | |
| tree | f1480a938f936a29630f67901a86b7e2c750eff1 /math/gen-tgmath-tests.py | |
| parent | 062257c5d929e3c9a83a26624a09e57936ac6b5e (diff) | |
| download | glibc-f9e90e4b4ce71f88470c8c8b0a16c21088294be4.tar.xz glibc-f9e90e4b4ce71f88470c8c8b0a16c21088294be4.zip | |
Implement C23 tanpi
C23 adds various <math.h> function families originally defined in TS
18661-4. Add the tanpi functions (tan(pi*x)).
Tested for x86_64 and x86, and with build-many-glibcs.py.
Diffstat (limited to 'math/gen-tgmath-tests.py')
| -rwxr-xr-x | math/gen-tgmath-tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/gen-tgmath-tests.py b/math/gen-tgmath-tests.py index 301284e6c1..bd55b4def7 100755 --- a/math/gen-tgmath-tests.py +++ b/math/gen-tgmath-tests.py @@ -750,6 +750,7 @@ class Tests(object): self.add_tests('log10p1', 'r', ['r']) self.add_tests('logp1', 'r', ['r']) self.add_tests('sinpi', 'r', ['r']) + self.add_tests('tanpi', 'r', ['r']) # C23 functions. self.add_tests('fmaximum', 'r', ['r', 'r']) self.add_tests('fmaximum_mag', 'r', ['r', 'r']) |
