r361264 - [Syntax] Rename TokensTest to SyntaxTests. NFC

Ilya Biryukov via cfe-commits cfe-commits at lists.llvm.org
Tue May 21 07:37:41 PDT 2019


Author: ibiryukov
Date: Tue May 21 07:37:41 2019
New Revision: 361264

URL: http://llvm.org/viewvc/llvm-project?rev=361264&view=rev
Log:
[Syntax] Rename TokensTest to SyntaxTests. NFC

To be more consistent with conventions used in the codebase. The new
name will be a better fit when more bits of the syntax library land.

Modified:
    cfe/trunk/unittests/Tooling/Syntax/CMakeLists.txt

Modified: cfe/trunk/unittests/Tooling/Syntax/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Tooling/Syntax/CMakeLists.txt?rev=361264&r1=361263&r2=361264&view=diff
==============================================================================
--- cfe/trunk/unittests/Tooling/Syntax/CMakeLists.txt (original)
+++ cfe/trunk/unittests/Tooling/Syntax/CMakeLists.txt Tue May 21 07:37:41 2019
@@ -3,11 +3,11 @@ set(LLVM_LINK_COMPONENTS
   Support
   )
 
-add_clang_unittest(TokensTest
+add_clang_unittest(SyntaxTests
   TokensTest.cpp
 )
 
-target_link_libraries(TokensTest
+target_link_libraries(SyntaxTests
   PRIVATE
   clangAST
   clangBasic




More information about the cfe-commits mailing list