From e7331eea2d71daf7c00dd5a68aca8d2aec8117e9 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 7 Dec 2010 02:43:51 +0000 Subject: [PATCH] test: Add the feature 'shell' on LLVM_ON_UNIX. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121104 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/lit.cfg b/test/lit.cfg index 8c869f0787b..98f72092e31 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -226,6 +226,10 @@ config.on_clone = on_clone ### Features +# Shell execution +if sys.platform not in ['win32']: + config.available_features.add('shell') + # Loadable module # FIXME: This should be supplied by Makefile or autoconf. if sys.platform in ['win32', 'cygwin']: -- 2.34.1