summaryrefslogtreecommitdiff
path: root/libc/test/UnitTest/LibcDeathTestExecutors.cpp
AgeCommit message (Collapse)Author
2025-09-22[libc] Add -Wextra for libc tests (#153321)Vinay Deshmukh
RE apply https://github.com/llvm/llvm-project/pull/133643/commits#top
2025-08-12Revert "[libc] Add -Wextra for libc tests" (#153169)William Huynh
Reverts llvm/llvm-project#133643
2025-08-12[libc] Add -Wextra for libc tests (#133643)Vinay Deshmukh
* Relates to: https://github.com/llvm/llvm-project/issues/119281
2025-01-09[libc][test] remove C++ stdlib includes (#122369)Nick Desaulniers
These make cross compiling the test suite more difficult, as you need the sysroot to contain these headers and libraries cross compiled for your target. It's straightforward to stick with the corresponding C headers.
2024-07-19[libc] Increase test timeout (#99678)Mikhail R. Gadelha
This patch increases the timeout of the libc test from 1s to 10s, mostly because rv32 runs in a qemu image and sometimes 1s is just not enough for the test to finish when there are other tests running in parallel
2024-07-12[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98597)Petr Hosek
This is a part of #97655.
2024-07-12Revert "[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace ↵Mehdi Amini
declaration" (#98593) Reverts llvm/llvm-project#98075 bots are broken
2024-07-11[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98075)Petr Hosek
This is a part of #97655.
2024-04-08[libc] Increase timeout for death tests. (#87959)lntue
Fix test timeout on RISCV bots. Fixes https://github.com/llvm/llvm-project/issues/87096
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-06-10[libc][NFC] Introduce a Location object for consistent failure loggingGuillaume Chatelet
This is just an implementation detail. Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D152532
2023-04-24[libc] Add rule named `add_libc_hermetic_test` which adds a hermetic test.Siva Chandra Reddy
A convenience wrapper name `add_libc_test` is also added which adds both a unit test and a hermetic test. The ctype tests have been switched over to use add_libc_test. Reviewed By: jhuber6 Differential Revision: https://reviews.llvm.org/D148756