about summary refs log tree commit diff
path: root/library/std/tests/floats/f64.rs
AgeCommit message (Collapse)AuthorLines
2025-06-03Enable Float non-determinism in miri. Update and add tests and changeLorrensP-2158466-4/+4
change tests in std, core and coretests.
2025-05-14Move applicable float tests from `coretests` back to `std`Trevor Gross-0/+249
The previous commit moved all test files from `std` to `core` so git understands the move. Not all functionality is actually testable in `core`, however, so perform move the relevant portions back. Changes from inherent to module methods is also done since this is the form of math operations available in `core` (as `core_float_math`).
2025-05-13Move float tests from std to coreTrevor Gross-917/+0
Many float-related tests in `std` only depend on `core`, so move the tests there. This also allows us to verify functions from `core_float_math`. Since the majority of test files need to be moved to `coretests`, move the files here without any cleanup; this is done in a followup commit. This makes git history slightly cleaner, but coretests will not build immediately after this commit.
2025-04-22test_nan: ensure the NAN contant is quietRalf Jung-0/+2
2025-04-04Expose algebraic floating point intrinsicsCalder Coalson-0/+19
2025-01-26Move std float unit tests to integration testsbjorn3-0/+896