From: Justin Bogner Date: Mon, 25 Jul 2016 18:07:14 +0000 (+0000) Subject: cmake: When adding lit testsuites, ignore Output directories X-Git-Tag: android-x86-7.1-r4~29712 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7e6a25847643192f58b59ff7436f0b3e11c743d1;p=android-x86%2Fexternal-llvm.git cmake: When adding lit testsuites, ignore Output directories With in-tree builds we can get Output directories scattered among our tests. Recursing into those to find tests doesn't make sense. Thanks to nlewycky for noticing this! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@276667 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index 582f318e421..9cd46ebc730 100644 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -1138,7 +1138,8 @@ function(add_lit_testsuites project directory) continue() endif() string(FIND ${lit_suite} Inputs is_inputs) - if (NOT is_inputs EQUAL -1) + string(FIND ${lit_suite} Output is_output) + if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1)) continue() endif()