diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-06-26 10:56:44 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-06-26 10:56:44 +0000 |
commit | 1c9de1f078f33447963ac12b6672ffc2d9e8813a (patch) | |
tree | 5f5b674b08587876d12fd708474a8e430b65b519 | |
parent | 6769c50d9ebe0cc7a89c044d32a5b62c70a8e4d9 (diff) | |
download | bcm5719-llvm-1c9de1f078f33447963ac12b6672ffc2d9e8813a.tar.gz bcm5719-llvm-1c9de1f078f33447963ac12b6672ffc2d9e8813a.zip |
Suppress llvm/test/Other/can-execute.txt on msys bash.
llvm-svn: 184932
-rw-r--r-- | llvm/test/Other/can-execute.txt | 2 | ||||
-rw-r--r-- | llvm/test/lit.cfg | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/llvm/test/Other/can-execute.txt b/llvm/test/Other/can-execute.txt index c7d08f6d8b1..fd6961f86bf 100644 --- a/llvm/test/Other/can-execute.txt +++ b/llvm/test/Other/can-execute.txt @@ -1,4 +1,4 @@ -REQUIRES: shell +REQUIRES: can-execute This tests that we abstract two peculiarities of unix in can_execute: diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 9442dbfc897..57520469708 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -250,6 +250,10 @@ for pattern in [r"\bbugpoint\b(?!-)", r"(?<!/|-)\bclang\b(?!-)", if execute_external: config.available_features.add('shell') +# Others/can-execute.txt +if sys.platform not in ['win32']: + config.available_features.add('can-execute') + # Loadable module # FIXME: This should be supplied by Makefile or autoconf. if sys.platform in ['win32', 'cygwin']: |