From: NAKAMURA Takumi Date: Wed, 16 Jan 2013 06:10:16 +0000 (+0000) Subject: clang/test/Driver/darwin-sdkroot.c: Suppress this on msys bash, to introduce the... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05a10ff30bd7c93f689c002963e6ba536e83904a;p=clang clang/test/Driver/darwin-sdkroot.c: Suppress this on msys bash, to introduce the feature "shell-preserves-root". MSYS transforms '/' to 'X:/mingwroot/'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172598 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/darwin-sdkroot.c b/test/Driver/darwin-sdkroot.c index f463f4a279..b727fa6bb0 100644 --- a/test/Driver/darwin-sdkroot.c +++ b/test/Driver/darwin-sdkroot.c @@ -30,3 +30,6 @@ // CHECK-NONROOT: clang // CHECK-NONROOT: "-cc1" // CHECK-NONROOT-NOT: "-isysroot" +// +// It doesn't make sense on msys bash. +// REQUIRES: shell-preserves-root diff --git a/test/lit.cfg b/test/lit.cfg index fae5fa099e..f22b0376b4 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -218,6 +218,10 @@ if platform.system() not in ['FreeBSD']: if platform.system() not in ['Windows'] or lit.getBashPath() != '': config.available_features.add('shell') +# Exclude MSYS due to transforming '/' to 'X:/mingwroot/'. +if not platform.system() in ['Windows'] or lit.getBashPath() == '': + config.available_features.add('shell-preserves-root') + # For tests that require Darwin to run. if platform.system() in ['Darwin']: config.available_features.add('system-darwin')