[clang-tools-extra] 5749a26 - [pseudo] Include missing `count` in test deps.

Sam McCall via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 6 15:15:24 PDT 2022


Author: Sam McCall
Date: 2022-04-07T00:15:18+02:00
New Revision: 5749a261c584cd16f90e473697fdf640c371eaaa

URL: https://github.com/llvm/llvm-project/commit/5749a261c584cd16f90e473697fdf640c371eaaa
DIFF: https://github.com/llvm/llvm-project/commit/5749a261c584cd16f90e473697fdf640c371eaaa.diff

LOG: [pseudo] Include missing `count` in test deps.

We don't use this for testing, but one of the lit python modules requires it :-\

After this, check-clang-pseudo passes with a clean build tree.

Added: 
    

Modified: 
    clang-tools-extra/pseudo/test/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/pseudo/test/CMakeLists.txt b/clang-tools-extra/pseudo/test/CMakeLists.txt
index e541359ee5cf6..250186cb78c16 100644
--- a/clang-tools-extra/pseudo/test/CMakeLists.txt
+++ b/clang-tools-extra/pseudo/test/CMakeLists.txt
@@ -3,7 +3,7 @@ set(CLANG_PSEUDO_TEST_DEPS
   ClangPseudoTests
   )
 
-foreach(dep FileCheck not)
+foreach(dep FileCheck not count)
   if(TARGET ${dep})
     list(APPEND CLANG_PSEUDO_TEST_DEPS ${dep})
   endif()


        


More information about the cfe-commits mailing list