[libc-commits] [PATCH] D95006: [libc][NFC] add "LlvmLibc" as a prefix to all test names

Michael Jones via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Jan 19 15:19:13 PST 2021


michaelrj created this revision.
michaelrj added a reviewer: sivachandra.
michaelrj added a project: libc-project.
Herald added subscribers: libc-commits, ecnelises, tschuett.
michaelrj requested review of this revision.

Having a consistent prefix makes selecting all of the llvm libc tests
easier on any platform that is also using the gtest framework.
This also modifies the TEST and TEST_F macros to enforce this change
moving forward.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D95006

Files:
  libc/test/config/linux/x86_64/syscall_test.cpp
  libc/test/src/assert/assert_test.cpp
  libc/test/src/ctype/isalnum_test.cpp
  libc/test/src/ctype/isalpha_test.cpp
  libc/test/src/ctype/isascii_test.cpp
  libc/test/src/ctype/isblank_test.cpp
  libc/test/src/ctype/iscntrl_test.cpp
  libc/test/src/ctype/isdigit_test.cpp
  libc/test/src/ctype/isgraph_test.cpp
  libc/test/src/ctype/islower_test.cpp
  libc/test/src/ctype/isprint_test.cpp
  libc/test/src/ctype/ispunct_test.cpp
  libc/test/src/ctype/isspace_test.cpp
  libc/test/src/ctype/isupper_test.cpp
  libc/test/src/ctype/isxdigit_test.cpp
  libc/test/src/ctype/toascii_test.cpp
  libc/test/src/ctype/tolower_test.cpp
  libc/test/src/ctype/toupper_test.cpp
  libc/test/src/errno/errno_test.cpp
  libc/test/src/fenv/enabled_exceptions_test.cpp
  libc/test/src/fenv/exception_status_test.cpp
  libc/test/src/fenv/rounding_mode_test.cpp
  libc/test/src/math/FDimTest.h
  libc/test/src/math/ILogbTest.h
  libc/test/src/math/LdExpTest.h
  libc/test/src/math/NextAfterTest.h
  libc/test/src/math/ceil_test.cpp
  libc/test/src/math/ceilf_test.cpp
  libc/test/src/math/ceill_test.cpp
  libc/test/src/math/copysign_test.cpp
  libc/test/src/math/copysignf_test.cpp
  libc/test/src/math/copysignl_test.cpp
  libc/test/src/math/cosf_test.cpp
  libc/test/src/math/exp2f_test.cpp
  libc/test/src/math/expf_test.cpp
  libc/test/src/math/fabs_test.cpp
  libc/test/src/math/fabsf_test.cpp
  libc/test/src/math/fabsl_test.cpp
  libc/test/src/math/fdim_test.cpp
  libc/test/src/math/fdimf_test.cpp
  libc/test/src/math/fdiml_test.cpp
  libc/test/src/math/floor_test.cpp
  libc/test/src/math/floorf_test.cpp
  libc/test/src/math/floorl_test.cpp
  libc/test/src/math/fmaf_test.cpp
  libc/test/src/math/fmax_test.cpp
  libc/test/src/math/fmaxf_test.cpp
  libc/test/src/math/fmaxl_test.cpp
  libc/test/src/math/fmin_test.cpp
  libc/test/src/math/fminf_test.cpp
  libc/test/src/math/fminl_test.cpp
  libc/test/src/math/frexp_test.cpp
  libc/test/src/math/frexpf_test.cpp
  libc/test/src/math/frexpl_test.cpp
  libc/test/src/math/hypot_test.cpp
  libc/test/src/math/hypotf_test.cpp
  libc/test/src/math/ilogb_test.cpp
  libc/test/src/math/ilogbf_test.cpp
  libc/test/src/math/ilogbl_test.cpp
  libc/test/src/math/logb_test.cpp
  libc/test/src/math/logbf_test.cpp
  libc/test/src/math/logbl_test.cpp
  libc/test/src/math/modf_test.cpp
  libc/test/src/math/modff_test.cpp
  libc/test/src/math/modfl_test.cpp
  libc/test/src/math/round_test.cpp
  libc/test/src/math/roundf_test.cpp
  libc/test/src/math/roundl_test.cpp
  libc/test/src/math/sincosf_test.cpp
  libc/test/src/math/sinf_test.cpp
  libc/test/src/math/sqrt_test.cpp
  libc/test/src/math/sqrtf_test.cpp
  libc/test/src/math/sqrtl_test.cpp
  libc/test/src/math/trunc_test.cpp
  libc/test/src/math/truncf_test.cpp
  libc/test/src/math/truncl_test.cpp
  libc/test/src/signal/raise_test.cpp
  libc/test/src/signal/sigaction_test.cpp
  libc/test/src/signal/sigaddset_test.cpp
  libc/test/src/signal/sigdelset_test.cpp
  libc/test/src/signal/sigfillset_test.cpp
  libc/test/src/signal/signal_test.cpp
  libc/test/src/signal/sigprocmask_test.cpp
  libc/test/src/stdio/fwrite_test.cpp
  libc/test/src/stdlib/_Exit_test.cpp
  libc/test/src/stdlib/abort_test.cpp
  libc/test/src/stdlib/abs_test.cpp
  libc/test/src/stdlib/labs_test.cpp
  libc/test/src/stdlib/llabs_test.cpp
  libc/test/src/string/bzero_test.cpp
  libc/test/src/string/memchr_test.cpp
  libc/test/src/string/memcmp_test.cpp
  libc/test/src/string/memcpy_test.cpp
  libc/test/src/string/memmove_test.cpp
  libc/test/src/string/memory_utils/memcpy_utils_test.cpp
  libc/test/src/string/memory_utils/utils_test.cpp
  libc/test/src/string/memrchr_test.cpp
  libc/test/src/string/memset_test.cpp
  libc/test/src/string/strcat_test.cpp
  libc/test/src/string/strchr_test.cpp
  libc/test/src/string/strcmp_test.cpp
  libc/test/src/string/strcpy_test.cpp
  libc/test/src/string/strcspn_test.cpp
  libc/test/src/string/strlen_test.cpp
  libc/test/src/string/strncpy_test.cpp
  libc/test/src/string/strnlen_test.cpp
  libc/test/src/string/strpbrk_test.cpp
  libc/test/src/string/strrchr_test.cpp
  libc/test/src/string/strspn_test.cpp
  libc/test/src/string/strstr_test.cpp
  libc/test/src/string/strtok_r_test.cpp
  libc/test/src/string/strtok_test.cpp
  libc/test/src/sys/mman/linux/mmap_test.cpp
  libc/test/src/threads/call_once_test.cpp
  libc/test/src/threads/mtx_test.cpp
  libc/test/src/threads/thrd_test.cpp
  libc/test/src/time/mktime_test.cpp
  libc/test/src/unistd/write_test.cpp
  libc/test/utils/CPP/bitset_test.cpp
  libc/test/utils/tools/WrapperGen/wrappergen_test.cpp
  libc/utils/UnitTest/LibcTest.h

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95006.317711.patch
Type: text/x-patch
Size: 144286 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210119/69efe8d1/attachment-0001.bin>


More information about the libc-commits mailing list