summaryrefslogtreecommitdiff
path: root/libc/test/src/stdlib/DivTest.h
AgeCommit message (Collapse)Author
2023-09-26[libc] Mass replace enclosing namespace (#67032)Guillaume Chatelet
This is step 4 of https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079
2023-02-07[libc][NFC] Move UnitTest and IntegrationTest to the 'test' directory.Siva Chandra Reddy
This part of the effort to make all test related pieces into the `test` directory. This helps is excluding test related pieces in a straight forward manner if LLVM_INCLUDE_TESTS is OFF. Future patches will also move the MPFR wrapper and testutils into the 'test' directory.
2022-07-07[libc] Make div test names uniqueAlex Brachet
In Fuchsia, all tests in a directory, ie stdlib, are linked into one executable, this causes problems for multiple definitions of the vtables of the div tests because their class has the same name. This patch just trivially changes their name to be unique between all div tests. Differential revision: https://reviews.llvm.org/D129248
2021-09-20[libc] Add implementations of div, ldiv, lldiv and imaxdiv.Siva Chandra Reddy
Reviewed By: michaelrj Differential Revision: https://reviews.llvm.org/D109952