[libc-commits] [PATCH] D129248: [libc] Make div test names unique
Siva Chandra via Phabricator via libc-commits
libc-commits at lists.llvm.org
Wed Jul 6 23:25:48 PDT 2022
sivachandra accepted this revision.
sivachandra added inline comments.
This revision is now accepted and ready to land.
================
Comment at: libc/test/src/stdlib/DivTest.h:39
using LlvmLibcDivTest = DivTest<IntType, ReturnType>; \
- TEST_F(LlvmLibcDivTest, SimpleTest) { simpleTest(func); }
+ TEST_F(LlvmLibcDivTest, CAT(SimpleTest, ReturnType)) { simpleTest(func); }
----------------
Can `CAT` be inlined?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129248/new/
https://reviews.llvm.org/D129248
More information about the libc-commits
mailing list