From 7e6a25847643192f58b59ff7436f0b3e11c743d1 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Mon, 25 Jul 2016 18:07:14 +0000 Subject: [PATCH] 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 --- cmake/modules/AddLLVM.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() -- 2.11.0