summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2015-02-04 22:36:52 +0000
committerReid Kleckner <reid@kleckner.net>2015-02-04 22:36:52 +0000
commitba77ad75d3570863a0ca270336cf6de46dbb21ef (patch)
tree7c5533a2c0042501076c9ce5145347458d462c8c
parent5149135369df776a68e3ce38ef46036f61d8c0b2 (diff)
downloadbcm5719-llvm-ba77ad75d3570863a0ca270336cf6de46dbb21ef.tar.gz
bcm5719-llvm-ba77ad75d3570863a0ca270336cf6de46dbb21ef.zip
Don't warn or note if bash is missing
We haven't needed bash on Windows to run the test suite for a long time now. Patch by Michael Edwards! llvm-svn: 228221
-rw-r--r--llvm/utils/lit/lit/LitConfig.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/utils/lit/lit/LitConfig.py b/llvm/utils/lit/lit/LitConfig.py
index b0dde5db868..b8183801bfc 100644
--- a/llvm/utils/lit/lit/LitConfig.py
+++ b/llvm/utils/lit/lit/LitConfig.py
@@ -76,7 +76,6 @@ class LitConfig:
self.bashPath = lit.util.which('bash')
if self.bashPath is None:
- self.warning("Unable to find 'bash'.")
self.bashPath = ''
return self.bashPath
@@ -91,7 +90,6 @@ class LitConfig:
# bash
self.bashPath = lit.util.which('bash', dir)
if self.bashPath is None:
- self.note("Unable to find 'bash.exe'.")
self.bashPath = ''
return dir
OpenPOWER on IntegriCloud