[pseudo] Include missing `count` in test deps.
authorSam McCall <sam.mccall@gmail.com>
Wed, 6 Apr 2022 22:13:59 +0000 (00:13 +0200)
committerSam McCall <sam.mccall@gmail.com>
Wed, 6 Apr 2022 22:15:18 +0000 (00:15 +0200)
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.

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

index e541359..250186c 100644 (file)
@@ -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()