[libc-commits] [PATCH] D129248: [libc] Make div test names unique

Alex Brachet via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu Jul 7 08:08:19 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa442c628882e: [libc] Make div test names unique (authored by abrachet).
Herald added a project: libc-project.

Changed prior to commit:
  https://reviews.llvm.org/D129248?vs=442778&id=442922#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D129248/new/

https://reviews.llvm.org/D129248

Files:
  libc/test/src/stdlib/DivTest.h


Index: libc/test/src/stdlib/DivTest.h
===================================================================
--- libc/test/src/stdlib/DivTest.h
+++ libc/test/src/stdlib/DivTest.h
@@ -34,4 +34,4 @@
 
 #define LIST_DIV_TESTS(IntType, ReturnType, func)                              \
   using LlvmLibcDivTest = DivTest<IntType, ReturnType>;                        \
-  TEST_F(LlvmLibcDivTest, SimpleTest) { simpleTest(func); }
+  TEST_F(LlvmLibcDivTest, SimpleTest##ReturnType) { simpleTest(func); }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129248.442922.patch
Type: text/x-patch
Size: 494 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20220707/ac9c1336/attachment.bin>


More information about the libc-commits mailing list